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

38 lines
1.8 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.WmsReceivePlanMapper">
<resultMap type="com.klp.domain.WmsReceivePlan" id="WmsReceivePlanResult">
<result property="receiveId" column="receive_id"/>
<result property="planId" column="plan_id"/>
<result property="warehouseArea" column="warehouse_area"/>
<result property="lotNo" column="lot_no"/>
<result property="supplierLotNo" column="supplier_lot_no"/>
<result property="productLotNo" column="product_lot_no"/>
<result property="productionDate" column="production_date"/>
<result property="weight" column="weight"/>
<result property="receiveStatus" column="receive_status"/>
<result property="goodsName" column="goods_name"/>
<result property="spec" column="spec"/>
<result property="length" column="length"/>
<result property="materialType" column="material_type"/>
<result property="manufacturer" column="manufacturer"/>
<result property="surfaceTreatment" column="surface_treatment"/>
<result property="zincCoating" column="zinc_coating"/>
<result property="teamGroup" column="team_group"/>
<result property="temperRolling" column="temper_rolling"/>
<result property="coatingType" column="coating_type"/>
<result property="goodsType" column="goods_type"/>
<result property="remark" column="remark"/>
<result property="delFlag" column="del_flag"/>
<result property="createBy" column="create_by"/>
<result property="updateBy" column="update_by"/>
<result property="createTime" column="create_time"/>
<result property="updateTime" column="update_time"/>
</resultMap>
</mapper>