29 lines
1.3 KiB
XML
29 lines
1.3 KiB
XML
|
|
<?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.CrmSalesObjectionMapper">
|
||
|
|
|
||
|
|
<resultMap type="com.klp.crm.domain.CrmSalesObjection" id="CrmSalesObjectionResult">
|
||
|
|
<result property="objectionId" column="objection_id"/>
|
||
|
|
<result property="objectionCode" column="objection_code"/>
|
||
|
|
<result property="orderId" column="order_id"/>
|
||
|
|
<result property="customerId" column="customer_id"/>
|
||
|
|
<result property="objectionType" column="objection_type"/>
|
||
|
|
<result property="objectionContent" column="objection_content"/>
|
||
|
|
<result property="objectionStatus" column="objection_status"/>
|
||
|
|
<result property="handleContent" column="handle_content"/>
|
||
|
|
<result property="handleUser" column="handle_user"/>
|
||
|
|
<result property="handleTime" column="handle_time"/>
|
||
|
|
<result property="closeTime" column="close_time"/>
|
||
|
|
<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>
|