26 lines
1.1 KiB
XML
26 lines
1.1 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.mapper.WmsReceivableMapper">
|
||
|
|
|
||
|
|
<resultMap type="com.klp.domain.WmsReceivable" id="WmsReceivableResult">
|
||
|
|
<result property="receivableId" column="receivable_id"/>
|
||
|
|
<result property="customerId" column="customer_id"/>
|
||
|
|
<result property="orderId" column="order_id"/>
|
||
|
|
<result property="dueDate" column="due_date"/>
|
||
|
|
<result property="amount" column="amount"/>
|
||
|
|
<result property="paidAmount" column="paid_amount"/>
|
||
|
|
<result property="balanceAmount" column="balance_amount"/>
|
||
|
|
<result property="status" column="status"/>
|
||
|
|
<result property="delFlag" column="del_flag"/>
|
||
|
|
<result property="remark" column="remark"/>
|
||
|
|
<result property="createTime" column="create_time"/>
|
||
|
|
<result property="createBy" column="create_by"/>
|
||
|
|
<result property="updateTime" column="update_time"/>
|
||
|
|
<result property="updateBy" column="update_by"/>
|
||
|
|
</resultMap>
|
||
|
|
|
||
|
|
|
||
|
|
</mapper>
|