PtlAgreementNonCarProductCostsMapper.xml 1.2 KB

1234567891011121314151617181920212223
  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.ydtech.modules.protocol.dao.PtlAgreementNonCarProductCostsMapper">
  6. <resultMap id="BaseResultMap" type="com.ydtech.modules.protocol.entity.po.PtlAgreementNonCarProductCosts">
  7. <id property="id" column="id" jdbcType="BIGINT"/>
  8. <result property="agreementId" column="agreement_id" jdbcType="BIGINT"/>
  9. <result property="productId" column="product_id" jdbcType="VARCHAR"/>
  10. <result property="productName" column="product_name" jdbcType="VARCHAR"/>
  11. <result property="costsDescription" column="costs_description" jdbcType="VARCHAR"/>
  12. <result property="costsStartDate" column="costs_start_date" jdbcType="TIMESTAMP"/>
  13. <result property="costsEndDate" column="costs_end_date" jdbcType="TIMESTAMP"/>
  14. <result property="costsProportion" column="costs_proportion" jdbcType="VARCHAR"/>
  15. </resultMap>
  16. <sql id="Base_Column_List">
  17. id,agreement_id,product_id,
  18. product_name,costs_description,costs_start_date,
  19. costs_end_date,costs_proportion
  20. </sql>
  21. </mapper>