Blame view

src/main/resources/mybatis/config/CycleCountPreferenceMapper.xml 2.17 KB
1
2
3
4
5
6
7
8
9
<?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.config.cycleCountPreference.mapper.CycleCountPreferenceMapper">
  <resultMap id="BaseResultMap" type="com.huaheng.pc.config.cycleCountPreference.domain.CycleCountPreference">
    <!--@mbg.generated-->
    <id column="id" jdbcType="INTEGER" property="id" />
    <result column="code" jdbcType="VARCHAR" property="code" />
    <result column="name" jdbcType="VARCHAR" property="name" />
    <result column="warehouseCode" jdbcType="VARCHAR" property="warehouseCode" />
xqs authored
10
11
12
    <result column="promptLocation" jdbcType="VARCHAR" property="promptLocation" />
    <result column="promptLpn" jdbcType="VARCHAR" property="promptLpn" />
    <result column="promptItem" jdbcType="VARCHAR" property="promptItem" />
13
14
    <result column="promptQuantity" jdbcType="INTEGER" property="promptQuantity" />
    <result column="allowAddNewInventory" jdbcType="INTEGER" property="allowAddNewInventory" />
xqs authored
15
    <result column="Enable" jdbcType="BOOLEAN" property="enable" />
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
    <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="countByPiece" jdbcType="INTEGER" property="countByPiece" />
  </resultMap>
  <sql id="Base_Column_List">
    <!--@mbg.generated-->
    id, code, `name`, warehouseCode, promptLocation, promptLpn, promptItem, promptQuantity, 
    allowAddNewInventory, `Enable`, created, createdBy, lastUpdated, lastUpdatedBy, version, 
    userDef1, userDef2, userDef3, processStamp, countByPiece
  </sql>
</mapper>