| 1234567891011121314151617181920212223 |
- <?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.ydtech.modules.protocol.dao.PtlAgreementNonCarProductCostsMapper">
- <resultMap id="BaseResultMap" type="com.ydtech.modules.protocol.entity.po.PtlAgreementNonCarProductCosts">
- <id property="id" column="id" jdbcType="BIGINT"/>
- <result property="agreementId" column="agreement_id" jdbcType="BIGINT"/>
- <result property="productId" column="product_id" jdbcType="VARCHAR"/>
- <result property="productName" column="product_name" jdbcType="VARCHAR"/>
- <result property="costsDescription" column="costs_description" jdbcType="VARCHAR"/>
- <result property="costsStartDate" column="costs_start_date" jdbcType="TIMESTAMP"/>
- <result property="costsEndDate" column="costs_end_date" jdbcType="TIMESTAMP"/>
- <result property="costsProportion" column="costs_proportion" jdbcType="VARCHAR"/>
- </resultMap>
- <sql id="Base_Column_List">
- id,agreement_id,product_id,
- product_name,costs_description,costs_start_date,
- costs_end_date,costs_proportion
- </sql>
- </mapper>
|