|
@@ -0,0 +1,23 @@
|
|
|
+<?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.abi.qms.platform.dao.mapper.QrPackageBatchMapper">
|
|
|
+
|
|
|
+ <!-- 通用查询映射结果 -->
|
|
|
+ <resultMap id="BaseResultMap" type="com.abi.qms.platform.dao.entity.QrPackageBatch">
|
|
|
+ <id column="ID" property="id" />
|
|
|
+ <result column="PACKAGE_ID" property="packageId" />
|
|
|
+ <result column="BATCH_NUMBER" property="batchNumber" />
|
|
|
+ <result column="BATCH_QR_NUMBER" property="batchQrNumber" />
|
|
|
+ <result column="CREATE_TIME" property="createTime" />
|
|
|
+ <result column="CREATE_BY" property="createBy" />
|
|
|
+ <result column="UPDATE_TIME" property="updateTime" />
|
|
|
+ <result column="UPDATE_BY" property="updateBy" />
|
|
|
+ <result column="IS_DELETE" property="isDelete" />
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+ <!-- 通用查询结果列 -->
|
|
|
+ <sql id="Base_Column_List">
|
|
|
+ ID, PACKAGE_ID, BATCH_NUMBER, BATCH_QR_NUMBER, CREATE_TIME, CREATE_BY, UPDATE_TIME, UPDATE_BY, IS_DELETE
|
|
|
+ </sql>
|
|
|
+
|
|
|
+</mapper>
|