Files
klp-oa/klp-wms/src/main/resources/mapper/klp/WmsDeliveryWaybillDetailMapper.xml

32 lines
1.5 KiB
XML
Raw Normal View History

<?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.WmsDeliveryWaybillDetailMapper">
<resultMap type="com.klp.domain.WmsDeliveryWaybillDetail" id="WmsDeliveryWaybillDetailResult">
<result property="detailId" column="detail_id"/>
<result property="waybillId" column="waybill_id"/>
<result property="coilId" column="coil_id"/>
<result property="productName" column="product_name"/>
<result property="edgeType" column="edge_type"/>
<result property="packaging" column="packaging"/>
<result property="settlementType" column="settlement_type"/>
<result property="rawMaterialFactory" column="raw_material_factory"/>
<result property="coilNo" column="coil_no"/>
<result property="specification" column="specification"/>
<result property="material" column="material"/>
<result property="quantity" column="quantity"/>
<result property="weight" column="weight"/>
<result property="unitPrice" column="unit_price"/>
<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>