CostOtherPaymentsDataMapper.xml 937 B

1234567891011121314151617181920
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.imed.costaccount.mapper.CostOtherPaymentsDataMapper">
  4. <!-- 可根据自己的需求,是否要使用 -->
  5. <resultMap type="com.imed.costaccount.model.CostOtherPaymentsData" id="costOtherPaymentsDataMap">
  6. <result property="id" column="id"/>
  7. <result property="dateYear" column="date_year"/>
  8. <result property="dateMonth" column="date_month"/>
  9. <result property="paymentsType" column="payments_type"/>
  10. <result property="paymentsName" column="payments_name"/>
  11. <result property="totalAmount" column="total_amount"/>
  12. <result property="hospId" column="hosp_id"/>
  13. <result property="createTime" column="create_time"/>
  14. <result property="deleteTime" column="delete_time"/>
  15. </resultMap>
  16. </mapper>