EmployeeDao.xml 886 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.huimv.management.dao.EmployeeDao">
  4. <!-- 可根据自己的需求,是否要使用 -->
  5. <resultMap type="com.huimv.management.entity.EmployeeEntity" id="employeeMap">
  6. <result property="id" column="id"/>
  7. <result property="name" column="name"/>
  8. <result property="position" column="position"/>
  9. <result property="approachTime" column="approach_time"/>
  10. <result property="departureTime" column="departure_time"/>
  11. <result property="jobStatus" column="job_status"/>
  12. <result property="deleted" column="deleted"/>
  13. <result property="gmtCreate" column="gmt_create"/>
  14. <result property="gmtModified" column="gmt_modified"/>
  15. </resultMap>
  16. </mapper>