积分列表接口

This commit is contained in:
张松
2025-09-26 16:57:22 +08:00
parent 00b79a40b4
commit e9581d9cfd
3 changed files with 9 additions and 5 deletions

View File

@@ -105,8 +105,8 @@ public class UShopUserController {
* 获取用户所有门店下积分列表
*/
@GetMapping("/pointsShopList")
public CzgResult<List<PointsShopListVO>> getList() {
return CzgResult.success(memberPointsLogService.getList(StpKit.USER.getLoginIdAsLong()));
public CzgResult<List<PointsShopListVO>> getList(@RequestParam(required = false) String shopName) {
return CzgResult.success(memberPointsLogService.getList(StpKit.USER.getLoginIdAsLong(), shopName));
}
/**