|
1
2
|
<?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">
|
|
3
4
|
<mapper namespace="com.huaheng.pc.inventory.adjustDetail.mapper.AdjustDetailMapper">
<resultMap id="BaseResultMap" type="com.huaheng.pc.inventory.adjustDetail.domain.AdjustDetail">
|
|
5
6
|
<!--@mbg.generated-->
<id column="id" jdbcType="INTEGER" property="id" />
|
|
7
|
<result column="adjustCode" jdbcType="VARCHAR" property="adjustCode" />
|
huhai
authored
|
8
|
<result column="cycleCountHeaderCode" jdbcType="VARCHAR" property="cycleCountHeaderCode" />
|
|
9
|
<result column="inventoryDetailId" jdbcType="INTEGER" property="inventoryDetailId" />
|
huhai
authored
|
10
|
<result column="cycleCountDetailId" jdbcType="INTEGER" property="cycleCountDetailId" />
|
|
11
|
<result column="checkCode" jdbcType="VARCHAR" property="checkCode" />
|
|
12
|
<result column="checkDetailId" jdbcType="VARCHAR" property="checkDetailId" />
|
|
13
|
<result column="referCode" jdbcType="VARCHAR" property="referCode" />
|
|
14
|
<result column="referDetailId" jdbcType="INTEGER" property="referDetailId" />
|
|
15
16
|
<result column="warehouseCode" jdbcType="VARCHAR" property="warehouseCode" />
<result column="companyCode" jdbcType="VARCHAR" property="companyCode" />
|
|
17
18
|
<result column="containerCode" jdbcType="VARCHAR" property="containerCode" />
<result column="locationCode" jdbcType="VARCHAR" property="locationCode" />
|
|
19
20
21
22
23
24
25
26
27
28
29
30
|
<result column="materialCode" jdbcType="VARCHAR" property="materialCode" />
<result column="materialName" jdbcType="VARCHAR" property="materialName" />
<result column="materialSpec" jdbcType="VARCHAR" property="materialSpec" />
<result column="materialUnit" jdbcType="VARCHAR" property="materialUnit" />
<result column="problemType" jdbcType="VARCHAR" property="problemType" />
<result column="attributeId" jdbcType="INTEGER" property="attributeId" />
<result column="fromInventorySts" jdbcType="VARCHAR" property="fromInventorySts" />
<result column="toInventorySts" jdbcType="VARCHAR" property="toInventorySts" />
<result column="fromQty" jdbcType="INTEGER" property="fromQty" />
<result column="toQty" jdbcType="INTEGER" property="toQty" />
<result column="gapQty" jdbcType="INTEGER" property="gapQty" />
<result column="status" jdbcType="INTEGER" property="status" />
|
|
31
|
<result column="supplierCode" jdbcType="VARCHAR" property="supplierCode" />
|
|
32
|
<result column="createdBy" jdbcType="VARCHAR" property="createdBy" />
|
|
33
|
<result column="created" jdbcType="TIMESTAMP" property="created" />
|
|
34
35
|
<result column="lastUpdatedBy" jdbcType="VARCHAR" property="lastUpdatedBy" />
<result column="lastUpdated" jdbcType="TIMESTAMP" property="lastUpdated" />
|
|
36
|
<result column="agreeBy" jdbcType="VARCHAR" property="agreeBy" />
|
|
37
38
39
40
41
42
43
|
<result column="agreeTime" jdbcType="TIMESTAMP" property="agreeTime" />
<result column="Remark" jdbcType="VARCHAR" property="remark" />
<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="processStamp" jdbcType="VARCHAR" property="processStamp" />
|
|
44
45
46
47
48
49
50
|
<result column="batch" jdbcType="VARCHAR" property="batch" />
<result column="lot" jdbcType="VARCHAR" property="lot" />
<result column="projectNo" jdbcType="VARCHAR" property="projectNo" />
<result column="weight" jdbcType="VARCHAR" property="weight" />
<result column="manufactureDate" jdbcType="TIMESTAMP" property="manufactureDate" />
<result column="expirationDate" jdbcType="TIMESTAMP" property="expirationDate" />
|
|
51
|
</resultMap>
|
|
52
|
|
|
53
54
|
<sql id="Base_Column_List">
<!--@mbg.generated-->
|
|
55
56
|
id, adjustCode, cycleCountHeadCode, inventoryDetailId, cycleCountDetailId, checkCode, checkDetailId, referCode,
referDetailId, warehouseCode, companyCode, containerCode, locationCode ,materialCode, materialName,
|
|
57
58
59
|
materialSpec, materialUnit, problemType, attributeId, fromInventorySts, toInventorySts, fromQty, toQty, gapQty,
`status`,supplierCode, created, createdBy,lastUpdatedBy,lastUpdated, agreeTime, Remark,version,
userDef1, userDef2, userDef3, processStamp, batch, lot,projectNo,weight,manufactureDate,expirationDate
|
|
60
|
</sql>
|
|
61
62
63
|
|
|
64
|
</mapper>
|