DepartmentProfitFileMapper.xml 829 B

12345678910111213141516171819
  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.kcim.dao.mapper.DepartmentProfitFileMapper">
  4. <!-- 可根据自己的需求,是否要使用 -->
  5. <resultMap type="com.kcim.dao.model.DepartmentProfitFile" id="departmentProfitFileMap">
  6. <result property="id" column="id"/>
  7. <result property="year" column="year"/>
  8. <result property="month" column="month"/>
  9. <result property="reportType" column="report_type"/>
  10. <result property="reportName" column="report_name"/>
  11. <result property="hospId" column="hosp_id"/>
  12. <result property="createTime" column="create_time"/>
  13. <result property="deleteTime" column="delete_time"/>
  14. </resultMap>
  15. </mapper>