会员积分问题修复

This commit is contained in:
Tankaikai 2025-03-17 17:37:06 +08:00
parent 5afe58e086
commit 234dc472b7
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ public class UPointsMallController {
*/
@GetMapping("/order/page")
public CzgResult<Page<PointsExchangeRecordDTO>> getPointsExchangeRecordPage(PointsExchangeRecordParam param) {
param.setUserId(StpKit.USER.getLoginIdAsLong());
param.setShopUserId(StpKit.USER.getLoginIdAsLong());
Page<PointsExchangeRecordDTO> page = pointsExchangeRecordService.getPointsExchangeRecordPage(param);
return CzgResult.success(page);
}