This commit is contained in:
wangw 2025-09-13 10:52:48 +08:00
parent c110695843
commit 212f27daa6
1 changed files with 2 additions and 0 deletions

View File

@ -47,6 +47,8 @@ public class ACouponController {
// @OperationLog("优惠券列表-分页")
// @SaAdminCheckPermission("coupon:page")
public CzgResult<Page<ShopCouponDTO>> getCouponPage(ShopCouponDTO param) {
Long shopId = StpKit.USER.getShopId(0L);
param.setShopId(shopId);
Page<ShopCouponDTO> data = shopCouponService.getCouponPage(param);
return CzgResult.success(data);
}