2026-03-30 13:28:37 +08:00
|
|
|
<?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.klp.crm.mapper.CrmContractMapper">
|
|
|
|
|
|
|
|
|
|
<resultMap type="com.klp.crm.domain.CrmContract" id="CrmContractResult">
|
|
|
|
|
<result property="contractId" column="contract_id"/>
|
|
|
|
|
<result property="contractName" column="contract_name"/>
|
|
|
|
|
<result property="contractNo" column="contract_no"/>
|
|
|
|
|
<result property="supplier" column="supplier"/>
|
|
|
|
|
<result property="customer" column="customer"/>
|
2026-04-01 10:44:51 +08:00
|
|
|
<result property="deliveryDate" column="delivery_date"/>
|
2026-03-30 13:28:37 +08:00
|
|
|
<result property="signTime" column="sign_time"/>
|
|
|
|
|
<result property="signLocation" column="sign_location"/>
|
|
|
|
|
<result property="productContent" column="product_content"/>
|
|
|
|
|
<result property="contractContent" column="contract_content"/>
|
|
|
|
|
<result property="supplierAddress" column="supplier_address"/>
|
|
|
|
|
<result property="supplierPhone" column="supplier_phone"/>
|
|
|
|
|
<result property="supplierBank" column="supplier_bank"/>
|
|
|
|
|
<result property="supplierAccount" column="supplier_account"/>
|
|
|
|
|
<result property="supplierTaxNo" column="supplier_tax_no"/>
|
|
|
|
|
<result property="customerAddress" column="customer_address"/>
|
|
|
|
|
<result property="customerPhone" column="customer_phone"/>
|
|
|
|
|
<result property="customerBank" column="customer_bank"/>
|
|
|
|
|
<result property="customerAccount" column="customer_account"/>
|
|
|
|
|
<result property="customerTaxNo" column="customer_tax_no"/>
|
|
|
|
|
<result property="techAnnex" column="tech_annex"/>
|
|
|
|
|
<result property="businessAnnex" column="business_annex"/>
|
|
|
|
|
<result property="productionSchedule" column="production_schedule"/>
|
|
|
|
|
<result property="status" column="status"/>
|
|
|
|
|
<result property="remark" column="remark"/>
|
|
|
|
|
<result property="createBy" column="create_by"/>
|
|
|
|
|
<result property="createTime" column="create_time"/>
|
|
|
|
|
<result property="updateBy" column="update_by"/>
|
|
|
|
|
<result property="updateTime" column="update_time"/>
|
|
|
|
|
<result property="delFlag" column="del_flag"/>
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</mapper>
|