35 lines
1.6 KiB
XML
35 lines
1.6 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.ruoyi.oa.mapper.OaBusinessMapper">
|
||
|
|
|
||
|
|
<resultMap type="com.ruoyi.oa.domain.OaBusiness" id="OaBusinessResult">
|
||
|
|
<result property="businessId" column="business_id"/>
|
||
|
|
<result property="name" column="name"/>
|
||
|
|
<result property="customerId" column="customer_id"/>
|
||
|
|
<result property="followUpStatus" column="follow_up_status"/>
|
||
|
|
<result property="contactLastTime" column="contact_last_time"/>
|
||
|
|
<result property="contactNextTime" column="contact_next_time"/>
|
||
|
|
<result property="ownerUserId" column="owner_user_id"/>
|
||
|
|
<result property="statusTypeId" column="status_type_id"/>
|
||
|
|
<result property="statusId" column="status_id"/>
|
||
|
|
<result property="endStatus" column="end_status"/>
|
||
|
|
<result property="dealTime" column="deal_time"/>
|
||
|
|
<result property="totalProductPrice" column="total_product_price"/>
|
||
|
|
<result property="discountPercent" column="discount_percent"/>
|
||
|
|
<result property="totalPrice" column="total_price"/>
|
||
|
|
<result property="remark" column="remark"/>
|
||
|
|
<result property="createBy" column="create_by"/>
|
||
|
|
<result property="updateBy" column="update_by"/>
|
||
|
|
<result property="createTime" column="create_time"/>
|
||
|
|
<result property="updateTime" column="update_time"/>
|
||
|
|
<result property="endRemark" column="end_remark"/>
|
||
|
|
<result property="delFlag" column="del_flag"/>
|
||
|
|
</resultMap>
|
||
|
|
|
||
|
|
|
||
|
|
</mapper>
|