| 12345678910111213141516171819 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.kcim.dao.mapper.DepartmentProfitFileMapper">
- <!-- 可根据自己的需求,是否要使用 -->
- <resultMap type="com.kcim.dao.model.DepartmentProfitFile" id="departmentProfitFileMap">
- <result property="id" column="id"/>
- <result property="year" column="year"/>
- <result property="month" column="month"/>
- <result property="reportType" column="report_type"/>
- <result property="reportName" column="report_name"/>
- <result property="hospId" column="hosp_id"/>
- <result property="createTime" column="create_time"/>
- <result property="deleteTime" column="delete_time"/>
- </resultMap>
- </mapper>
|