优化促销相关代码,修复bug

This commit is contained in:
paulGao
2021-12-16 15:02:06 +08:00
parent f0b43ddd32
commit 7dcdb43acf
15 changed files with 231 additions and 137 deletions

View File

@@ -47,7 +47,7 @@ public class SeckillStoreController {
public ResultMessage<IPage<SeckillApply>> getSeckillApplyPage(SeckillSearchParams queryParam, PageVO pageVo) {
String storeId = Objects.requireNonNull(UserContext.getCurrentUser()).getStoreId();
queryParam.setStoreId(storeId);
IPage<SeckillApply> seckillPage = seckillApplyService.getSeckillApply(queryParam, pageVo);
IPage<SeckillApply> seckillPage = seckillApplyService.getSeckillApplyPage(queryParam, pageVo);
return ResultUtil.data(seckillPage);
}