This commit is contained in:
GYJ 2025-03-25 09:05:55 +08:00
parent 551606c02d
commit 21341d98c6
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ public class CurMemberPointsLog implements Serializable {
/**
* 用户id
*/
private Long userId;
private Long shopUserId;
/**
* 摘要信息兑换某个商品/消费多少钱/充值多少钱/新会员赠送积分等

View File

@ -164,7 +164,7 @@ public class CurPointsBasicSettingServiceImpl extends ServiceImpl<CurPointsBasic
for (OldMemberPointsLog oldMemberPointsLog : oldMemberPointsLogList) {
CurMemberPointsLog memberPointsLog = BeanUtil.toBean(oldMemberPointsLog, CurMemberPointsLog.class);
memberPointsLog.setUserId(oldMemberPointsLog.getMemberId());
memberPointsLog.setShopUserId(oldMemberPointsLog.getMemberId());
curMemberPointsLogs.add(memberPointsLog);
}