31 lines
1.4 KiB
XML
31 lines
1.4 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.WmsDeliveryWaybillMapper">
|
||
|
|
|
||
|
|
<resultMap type="com.klp.domain.WmsDeliveryWaybill" id="WmsDeliveryWaybillResult">
|
||
|
|
<result property="waybillId" column="waybill_id"/>
|
||
|
|
<result property="waybillNo" column="waybill_no"/>
|
||
|
|
<result property="waybillName" column="waybill_name"/>
|
||
|
|
<result property="planId" column="plan_id"/>
|
||
|
|
<result property="licensePlate" column="license_plate"/>
|
||
|
|
<result property="consigneeUnit" column="consignee_unit"/>
|
||
|
|
<result property="senderUnit" column="sender_unit"/>
|
||
|
|
<result property="deliveryTime" column="delivery_time"/>
|
||
|
|
<result property="weighbridge" column="weighbridge"/>
|
||
|
|
<result property="salesPerson" column="sales_person"/>
|
||
|
|
<result property="principal" column="principal"/>
|
||
|
|
<result property="principalPhone" column="principal_phone"/>
|
||
|
|
<result property="status" column="status"/>
|
||
|
|
<result property="remark" column="remark"/>
|
||
|
|
<result property="delFlag" column="del_flag"/>
|
||
|
|
<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>
|