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