CrmSubjectToExecutionMapper.xml 994 B

123456789101112131415161718
  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.zksy.system.basicData.mapper.CrmSubjectToExecutionMapper">
  6. <resultMap type="CrmSubjectToExecution" id="CrmSubjectToExecutionResult">
  7. <result property="id" column="id" />
  8. <result property="enterpriseName" column="enterprise_name" />
  9. <result property="unifiedSocialCreditCode" column="unified_social_credit_code" />
  10. <result property="industryCode" column="industry_code" />
  11. <result property="executor" column="executor" />
  12. <result property="executingCourt" column="executing_court" />
  13. <result property="filingTime" column="filing_time" />
  14. <result property="caseNumber" column="case_number" />
  15. <result property="subjectOfExecution" column="subject_of_execution" />
  16. </resultMap>
  17. </mapper>