Blame view

src/main/resources/mybatis/inventory/AdjustDetailMapper.xml 3.36 KB
mahuandong authored
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">
xqs authored
3
4
<mapper namespace="com.huaheng.pc.inventory.adjustDetail.mapper.AdjustDetailMapper">
  <resultMap id="BaseResultMap" type="com.huaheng.pc.inventory.adjustDetail.domain.AdjustDetail">
mahuandong authored
5
6
7
8
    <!--@mbg.generated-->
    <id column="id" jdbcType="INTEGER" property="id" />
    <result column="adjustCode" jdbcType="VARCHAR" property="adjustCode" />
    <result column="cycleCountCode" jdbcType="VARCHAR" property="cycleCountCode" />
xqs authored
9
    <result column="cycleDetailId" jdbcType="INTEGER" property="cycleDetailId" />
mahuandong authored
10
    <result column="checkCode" jdbcType="VARCHAR" property="checkCode" />
xqs authored
11
    <result column="checkDetailId" jdbcType="VARCHAR" property="checkDetailId" />
mahuandong authored
12
    <result column="referCode" jdbcType="VARCHAR" property="referCode" />
xqs authored
13
    <result column="referDetailId" jdbcType="INTEGER" property="referDetailId" />
mahuandong authored
14
15
    <result column="warehouseCode" jdbcType="VARCHAR" property="warehouseCode" />
    <result column="companyCode" jdbcType="VARCHAR" property="companyCode" />
xqs authored
16
17
    <result column="containerCode" jdbcType="VARCHAR" property="containerCode" />
    <result column="locationCode" jdbcType="VARCHAR" property="locationCode" />
mahuandong authored
18
19
20
21
22
23
24
25
26
27
28
29
    <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" />
xqs authored
30
    <result column="createdBy" jdbcType="VARCHAR" property="createdBy" />
mahuandong authored
31
    <result column="created" jdbcType="TIMESTAMP" property="created" />
xqs authored
32
    <result column="agreeBy" jdbcType="VARCHAR" property="agreeBy" />
mahuandong authored
33
34
35
36
37
38
39
40
41
42
    <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" />
  </resultMap>
  <sql id="Base_Column_List">
    <!--@mbg.generated-->
xqs authored
43
    id, adjustCode, cycleCountCode, cycleDetailId, checkCode, checkDetailId, referCode,
xqs authored
44
    referDetailId, warehouseCode, companyCode, containerCode, locationCode ,materialCode, materialName,
mahuandong authored
45
    materialSpec, materialUnit, problemType, attributeId, fromInventorySts, toInventorySts, 
xqs authored
46
47
    fromQty, toQty, gapQty, `status`, created, createdBy, agreeTime, Remark,
    version, userDef1, userDef2, userDef3, processStamp
mahuandong authored
48
49
  </sql>
</mapper>