You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
2.2 KiB
XML
41 lines
2.2 KiB
XML
2 years ago
|
<?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.glxp.api.dao.inv.InvUserProductDetailMapper">
|
||
|
|
||
|
<resultMap id="BaseResultMap" type="com.glxp.api.entity.inv.InvUserProductDetail">
|
||
|
<id property="id" column="id" jdbcType="INTEGER"/>
|
||
|
<result property="code" column="code" jdbcType="VARCHAR"/>
|
||
|
<result property="mainaction" column="mainAction" jdbcType="VARCHAR"/>
|
||
|
<result property="action" column="action" jdbcType="VARCHAR"/>
|
||
|
<result property="orderid" column="orderId" jdbcType="VARCHAR"/>
|
||
|
<result property="relid" column="relId" jdbcType="INTEGER"/>
|
||
|
<result property="namecode" column="nameCode" jdbcType="VARCHAR"/>
|
||
|
<result property="batchno" column="batchNo" jdbcType="VARCHAR"/>
|
||
|
<result property="producedate" column="produceDate" jdbcType="VARCHAR"/>
|
||
|
<result property="expiredate" column="expireDate" jdbcType="VARCHAR"/>
|
||
|
<result property="serialno" column="serialNo" jdbcType="VARCHAR"/>
|
||
|
<result property="supid" column="supId" jdbcType="VARCHAR"/>
|
||
|
<result property="count" column="count" jdbcType="INTEGER"/>
|
||
|
<result property="recount" column="reCount" jdbcType="INTEGER"/>
|
||
|
<result property="deptcode" column="deptCode" jdbcType="VARCHAR"/>
|
||
|
<result property="invcode" column="invCode" jdbcType="VARCHAR"/>
|
||
|
<result property="invspacecode" column="invSpaceCode" jdbcType="VARCHAR"/>
|
||
|
<result property="purchasetype" column="purchaseType" jdbcType="TINYINT"/>
|
||
|
<result property="updatetime" column="updateTime" jdbcType="TIMESTAMP"/>
|
||
|
<result property="incount" column="inCount" jdbcType="INTEGER"/>
|
||
|
<result property="outcount" column="outCount" jdbcType="INTEGER"/>
|
||
|
</resultMap>
|
||
|
|
||
|
<sql id="Base_Column_List">
|
||
|
id,code,mainAction,
|
||
|
action,orderId,relId,
|
||
|
nameCode,batchNo,produceDate,
|
||
|
expireDate,serialNo,supId,
|
||
|
count,reCount,deptCode,
|
||
|
invCode,invSpaceCode,purchaseType,
|
||
|
updateTime,inCount,outCount
|
||
|
</sql>
|
||
|
</mapper>
|