shopUserId

This commit is contained in:
GYJ 2025-03-17 17:13:10 +08:00
parent e0c191c733
commit e1583b3586
2 changed files with 2 additions and 2 deletions

View File

@ -69,7 +69,7 @@ public class CurPointsExchangeRecord implements Serializable {
/**
* 会员id
*/
private Long userId;
private Long shopUserId;
/**
* 会员名称

View File

@ -139,7 +139,7 @@ public class CurPointsBasicSettingServiceImpl extends ServiceImpl<CurPointsBasic
for (OldPointsExchangeRecord oldPointsExchangeRecord : oldPointsExchangeRecordList) {
CurPointsExchangeRecord curPointsExchangeRecord = BeanUtil.toBean(oldPointsExchangeRecord, CurPointsExchangeRecord.class);
curPointsExchangeRecord.setUserId(oldPointsExchangeRecord.getMemberId());
curPointsExchangeRecord.setShopUserId(oldPointsExchangeRecord.getMemberId());
curPointsExchangeRecord.setNickName(oldPointsExchangeRecord.getMemberName());
curPointsExchangeRecordList.add(curPointsExchangeRecord);
}