StaffContractArchivesMapper.xml 1.2 KB

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.zhongzheng.modules.staff.mapper.StaffContractArchivesMapper">
  6. <resultMap type="com.zhongzheng.modules.staff.domain.StaffContractArchives" id="StaffContractArchivesResult">
  7. <result property="archivesId" column="archives_id"/>
  8. <result property="staffId" column="staff_id"/>
  9. <result property="companyId" column="company_id"/>
  10. <result property="archivesNumber" column="archives_number"/>
  11. <result property="archivesName" column="archives_name"/>
  12. <result property="archivesType" column="archives_type"/>
  13. <result property="signingDate" column="Signing_date"/>
  14. <result property="effectiveDate" column="effective_date"/>
  15. <result property="endDate" column="end_date"/>
  16. <result property="electronicArchives" column="electronic_archives"/>
  17. <result property="status" column="status"/>
  18. <result property="createTime" column="create_time"/>
  19. <result property="updateTime" column="update_time"/>
  20. </resultMap>
  21. </mapper>