|
@@ -1,10 +1,7 @@
|
|
package com.abi.qms.platform.dao.mapper;
|
|
package com.abi.qms.platform.dao.mapper;
|
|
|
|
|
|
import com.abi.qms.platform.dao.entity.QrPackage;
|
|
import com.abi.qms.platform.dao.entity.QrPackage;
|
|
-import com.abi.qms.platform.dao.vo.result.ActivePackageVO;
|
|
|
|
-import com.abi.qms.platform.dao.vo.result.PackageActiveSearchVO;
|
|
|
|
-import com.abi.qms.platform.dao.vo.result.QrPackageVO;
|
|
|
|
-import com.abi.qms.platform.dao.vo.result.QrSingleCheckVO;
|
|
|
|
|
|
+import com.abi.qms.platform.dao.vo.result.*;
|
|
import com.abi.qms.platform.dto.req.ListActivePackageAddReq;
|
|
import com.abi.qms.platform.dto.req.ListActivePackageAddReq;
|
|
import com.abi.qms.platform.dto.req.ListQrPackageReq;
|
|
import com.abi.qms.platform.dto.req.ListQrPackageReq;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
@@ -49,4 +46,11 @@ public interface QrPackageMapper extends BaseMapper<QrPackage> {
|
|
* 单码查询详细信息
|
|
* 单码查询详细信息
|
|
*/
|
|
*/
|
|
QrSingleCheckVO getQrSingleCheckDetailById(Long id);
|
|
QrSingleCheckVO getQrSingleCheckDetailById(Long id);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 通过码活动申请id查询关联码包列表
|
|
|
|
+ * @param page
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ IPage<ActiveModifyApplyPackageVO> listPackageByActiveApplyId(IPage page, @Param("applyId") Long applyId);
|
|
}
|
|
}
|