PickingStatementMapper.xml
2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?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.huaheng.pc.tool.statement.mapper.PickingStatementMapper">
<resultMap id="BaseResultMap" type="com.huaheng.pc.tool.statement.domain.PickingStatement">
<id property="id" column="id" jdbcType="BIGINT"/>
<result property="refercode" column="referCode" jdbcType="VARCHAR"/>
<result property="shipmentcode" column="shipmentCode" jdbcType="VARCHAR"/>
<result property="customercode" column="customerCode" jdbcType="VARCHAR"/>
<result property="customername" column="customerName" jdbcType="VARCHAR"/>
<result property="materialcode" column="materialCode" jdbcType="VARCHAR"/>
<result property="materialspec" column="materialSpec" jdbcType="VARCHAR"/>
<result property="level" column="level" jdbcType="VARCHAR"/>
<result property="color" column="color" jdbcType="VARCHAR"/>
<result property="propackaging" column="proPackaging" jdbcType="VARCHAR"/>
<result property="totalqty" column="totalQty" jdbcType="DECIMAL"/>
<result property="containerspec" column="containerSpec" jdbcType="INTEGER"/>
<result property="boxqty" column="boxQty" jdbcType="DECIMAL"/>
<result property="scatterqty" column="scatterQty" jdbcType="DECIMAL"/>
<result property="groupqty" column="groupQty" jdbcType="VARCHAR"/>
<result property="group" column="group" jdbcType="DECIMAL"/>
<result property="groupdate" column="groupDate" jdbcType="VARCHAR"/>
<result property="area" column="area" jdbcType="DECIMAL"/>
<result property="loadingtype" column="loadingType" jdbcType="VARCHAR"/>
<result property="warehouse" column="warehouse" jdbcType="VARCHAR"/>
<result property="note" column="note" jdbcType="VARCHAR"/>
</resultMap>
<sql id="Base_Column_List">
id,referCode,shipmentCode,
customerCode,customerName,materialCode,
materialSpec,level,color,
proPackaging,totalQty,containerSpec,
boxQty,scatterQty,groupQty,
group,groupDate,area,
loadingType,warehouse,note
</sql>
</mapper>