Blame view

src/main/resources/mybatis/inventory/CycleCountDetailMapper.xml 3.94 KB
mahuandong authored
1
2
3
4
5
6
<?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.inventory.cycleCountDetail.mapper.CycleCountDetailMapper">
  <resultMap id="BaseResultMap" type="com.huaheng.pc.inventory.cycleCountDetail.domain.CycleCountDetail">
    <!--@mbg.generated-->
    <id column="id" jdbcType="INTEGER" property="id" />
xqs authored
7
    <result column="cycleCountHeadCode" jdbcType="VARCHAR" property="cycleCountHeadCode" />
mahuandong authored
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
    <result column="countId" jdbcType="INTEGER" property="countId" />
    <result column="round" jdbcType="INTEGER" property="round" />
    <result column="taskHeaderId" jdbcType="INTEGER" property="taskHeaderId" />
    <result column="taskDetailId" jdbcType="INTEGER" property="taskDetailId" />
    <result column="warehouseCode" jdbcType="VARCHAR" property="warehouseCode" />
    <result column="inventoryDetailId" jdbcType="INTEGER" property="inventoryDetailId" />
    <result column="locationCode" jdbcType="VARCHAR" property="locationCode" />
    <result column="containerCode" jdbcType="VARCHAR" property="containerCode" />
    <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="companyCode" jdbcType="VARCHAR" property="companyCode" />
    <result column="inventorySts" jdbcType="VARCHAR" property="inventorySts" />
    <result column="systemQty" jdbcType="DECIMAL" property="systemQty" />
    <result column="countedQty" jdbcType="DECIMAL" property="countedQty" />
24
    <result column="gapQty" jdbcType="DECIMAL" property="gapQty" />
mahuandong authored
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
    <result column="rejectionNote" jdbcType="VARCHAR" property="rejectionNote" />
    <result column="countedBy" jdbcType="VARCHAR" property="countedBy" />
    <result column="countedAt" jdbcType="TIMESTAMP" property="countedAt" />
    <result column="assignedTo" jdbcType="VARCHAR" property="assignedTo" />
    <result column="assignedAt" jdbcType="TIMESTAMP" property="assignedAt" />
    <result column="completedBy" jdbcType="VARCHAR" property="completedBy" />
    <result column="completedAt" jdbcType="TIMESTAMP" property="completedAt" />
    <result column="enableStatus" jdbcType="INTEGER" property="enableStatus" />
    <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="processStamp" jdbcType="VARCHAR" property="processStamp" />
    <result column="batch" jdbcType="VARCHAR" property="batch" />
    <result column="lot" jdbcType="VARCHAR" property="lot" />
    <result column="projectNo" jdbcType="VARCHAR" property="projectNo" />
45
    <result column="preferenceCode" jdbcType="VARCHAR" property="preferenceCode" />
mahuandong authored
46
47
48
  </resultMap>
  <sql id="Base_Column_List">
    <!--@mbg.generated-->
xqs authored
49
    id, countId, cycleCountHeadCode, round, taskHeaderId, taskDetailId, warehouseCode, inventoryDetailId,
mahuandong authored
50
    locationCode, containerCode, materialCode, materialName, materialSpec, materialUnit, 
51
    companyCode, inventorySts, systemQty, countedQty, gapQty, rejectionNote, countedBy,
mahuandong authored
52
53
    countedAt, assignedTo, assignedAt, completedBy, completedAt, enableStatus, created, 
    createdBy, lastUpdated, lastUpdatedBy, version, userDef1, userDef2, userDef3, processStamp, 
54
    batch, lot, projectNo, preferenceCode
mahuandong authored
55
56
  </sql>
</mapper>