WaveMapper.xml
3.28 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
41
42
43
44
45
46
47
48
49
<?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.shipment.wave.mapper.WaveMapper">
<resultMap id="BaseResultMap" type="com.huaheng.pc.shipment.wave.domain.Wave">
<!--@mbg.generated-->
<id column="id" jdbcType="INTEGER" property="id" />
<result column="warehouseCode" jdbcType="VARCHAR" property="warehouseCode" />
<result column="waveName" jdbcType="VARCHAR" property="waveName" />
<result column="masterCode" jdbcType="VARCHAR" property="masterCode" />
<result column="status" jdbcType="INTEGER" property="status" />
<result column="currentWaveStep" jdbcType="VARCHAR" property="currentWaveStep" />
<result column="lastWaveStep" jdbcType="VARCHAR" property="lastWaveStep" />
<result column="totalShipments" jdbcType="INTEGER" property="totalShipments" />
<result column="totalLines" jdbcType="INTEGER" property="totalLines" />
<result column="totalQty" jdbcType="INTEGER" property="totalQty" />
<result column="startedAt" jdbcType="TIMESTAMP" property="startedAt" />
<result column="completedAt" jdbcType="TIMESTAMP" property="completedAt" />
<result column="waveMode" jdbcType="VARCHAR" property="waveMode" />
<result column="errorMessage" jdbcType="VARCHAR" property="errorMessage" />
<result column="locked" jdbcType="BIT" property="locked" />
<result column="replenishmentReqd" jdbcType="BIT" property="replenishmentReqd" />
<result column="messageId" jdbcType="VARCHAR" property="messageId" />
<result column="runBy" jdbcType="VARCHAR" property="runBy" />
<result column="releasedBy" jdbcType="VARCHAR" property="releasedBy" />
<result column="releasedAt" jdbcType="TIMESTAMP" property="releasedAt" />
<result column="created" jdbcType="TIMESTAMP" property="created" />
<result column="createdBy" jdbcType="VARCHAR" property="createdBy" />
<result column="lastUpdated" jdbcType="TIMESTAMP" property="lastUpdated" />
<result column="lastUpdatedBy" jdbcType="VARCHAR" property="lastUpdatedBy" />
<result column="version" jdbcType="INTEGER" property="version" />
<result column="userDef1" jdbcType="VARCHAR" property="userDef1" />
<result column="userDef2" jdbcType="VARCHAR" property="userDef2" />
<result column="userDef3" jdbcType="VARCHAR" property="userDef3" />
<result column="userDef4" jdbcType="VARCHAR" property="userDef4" />
<result column="processStamp" jdbcType="VARCHAR" property="processStamp" />
<result column="closed" jdbcType="INTEGER" property="closed" />
<result column="closedBy" jdbcType="VARCHAR" property="closedBy" />
<result column="closedAt" jdbcType="TIMESTAMP" property="closedAt" />
<result column="released" jdbcType="INTEGER" property="released" />
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, warehouseCode, waveName, masterCode, `status`, currentWaveStep, lastWaveStep,
totalShipments, totalLines, totalQty, startedAt, completedAt, waveMode, errorMessage,
locked, replenishmentReqd, messageId, runBy, releasedBy, releasedAt, created, createdBy,
lastUpdated, lastUpdatedBy, version, userDef1, userDef2, userDef3, userDef4, processStamp,
closed, closedBy, closedAt, released
</sql>
</mapper>