|
@@ -4,6 +4,32 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
<mapper namespace="com.abi.qms.platform.dao.mapper.QrPackageMapper">
|
|
|
|
|
|
+ <!-- 通用查询映射结果 -->
|
|
|
+ <resultMap id="BaseResultMap" type="com.abi.qms.platform.dao.entity.QrPackage">
|
|
|
+ <id column="ID" property="id" />
|
|
|
+ <result column="MATERIAL_ID" property="materialId" />
|
|
|
+ <result column="FACTORY_COVER_ID" property="factoryCoverId" />
|
|
|
+ <result column="FACTORY_BEER_ID" property="factoryBeerId" />
|
|
|
+ <result column="STANDBY_RATIO" property="standbyRatio" />
|
|
|
+ <result column="BOX_CODE_FORMAT_ID" property="boxCodeFormatId" />
|
|
|
+ <result column="SAP_ORDER_NO" property="sapOrderNo" />
|
|
|
+ <result column="QR_NUMBER" property="qrNumber" />
|
|
|
+ <result column="APPLY_STATUS" property="applyStatus" />
|
|
|
+ <result column="GENERATE_STATUS" property="generateStatus" />
|
|
|
+ <result column="GENERATE_TIME" property="generateTime" />
|
|
|
+ <result column="REASON_APPLY" property="reasonApply" />
|
|
|
+ <result column="DOWNLOAD_PATH" property="downloadPath" />
|
|
|
+ <result column="IS_DOWNLOAD" property="isDownload" />
|
|
|
+ <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" />
|
|
|
+ <result column="ZIP_PASSWORD" property="zipPassword" />
|
|
|
+ <result column="QR_TYPE" property="qrType" />
|
|
|
+ <result column="FACTORY_COVER_LEVEL_TWO_ID" property="factoryCoverLevelTwoId" />
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
<resultMap type="com.abi.qms.platform.dao.vo.result.QrPackageVO" id="QrPackageResult">
|
|
|
<result property="id" column="id"/>
|
|
|
<result property="materialId" column="material_id"/>
|
|
@@ -37,7 +63,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="createTime" column="download_time"/>
|
|
|
<result property="createByName" column="download_user_name"/>
|
|
|
</collection>
|
|
|
-
|
|
|
<!-- 码包批次列表 -->
|
|
|
<collection property="qrPackageBatchVOList" javaType="java.util.List" ofType="com.abi.qms.platform.dao.vo.result.QrPackageBatchVO">
|
|
|
<result property="id" column="batch_id"/>
|