This commit is contained in:
777
2025-12-05 15:18:46 +08:00
parent 34a8ea444c
commit e55d5b7dc8
3 changed files with 6 additions and 0 deletions

View File

@@ -31,6 +31,8 @@ public class AccountDelete implements Serializable {
*/
private Long userId;
private String usercode;
private String mobile;
private Long inviteId;
/**
* 当前彩币数量
*/

View File

@@ -298,6 +298,8 @@ public class UserServiceImpl extends ServiceImpl<UserMapper, User> implements Us
AccountDelete accountDelete = BeanConvertUtil.convertTo(account, AccountDelete::new);
accountDelete.setId(null);
accountDelete.setUsercode(user.getUsercode());
accountDelete.setMobile(user.getMobile());
accountDelete.setInviteId(user.getInviteId());
accountDelete.setCreateTime(LocalDateTime.now());
accountDeleteMapper.insert(accountDelete);
}