|
|
@@ -1058,18 +1058,20 @@ public class FsStoreProductScrmServiceImpl implements IFsStoreProductScrmService
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public List<FsStoreProductListQueryVO> selectFsStoreProductNewQuery(int count) {
|
|
|
+ public List<FsStoreProductListQueryVO> selectFsStoreProductNewQuery(int count, String appId) {
|
|
|
HashMap<String, Object> map = new HashMap<>();
|
|
|
map.put("count", count);
|
|
|
map.put("config", medicalMallConfig);
|
|
|
+ map.put("appId", appId);
|
|
|
return fsStoreProductMapper.selectFsStoreProductNewQuery(map);
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public List<FsStoreProductListQueryVO> selectFsStoreProductHotQuery(int count) {
|
|
|
+ public List<FsStoreProductListQueryVO> selectFsStoreProductHotQuery(int count, String appId) {
|
|
|
HashMap<String, Object> map = new HashMap<>();
|
|
|
map.put("count", count);
|
|
|
map.put("config", medicalMallConfig);
|
|
|
+ map.put("appId", appId);
|
|
|
return fsStoreProductMapper.selectFsStoreProductHotQuery(map);
|
|
|
}
|
|
|
|
|
|
@@ -1084,8 +1086,8 @@ public class FsStoreProductScrmServiceImpl implements IFsStoreProductScrmService
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public List<FsStoreProductListQueryVO> selectFsStoreProductGoodListQuery() {
|
|
|
- return fsStoreProductMapper.selectFsStoreProductGoodListQuery(medicalMallConfig);
|
|
|
+ public List<FsStoreProductListQueryVO> selectFsStoreProductGoodListQuery(BaseQueryParam param) {
|
|
|
+ return fsStoreProductMapper.selectFsStoreProductGoodListQuery(medicalMallConfig, param);
|
|
|
}
|
|
|
|
|
|
@Override
|