This commit is contained in:
dute7liang
2024-01-03 21:37:47 +08:00
parent 34ee13959a
commit 161b589e64
15 changed files with 245 additions and 88 deletions

View File

@@ -8,7 +8,7 @@ public class AddRechargeOrderAdminDto {
/**
* 员工ID
*/
private Long userId;
private String usercode;
/**
* 1-充值余额 2-充值收益
@@ -19,5 +19,6 @@ public class AddRechargeOrderAdminDto {
* 调整的金额
*/
private Long rechargeCoin;
private String remark;
}

View File

@@ -0,0 +1,32 @@
package com.ruoyi.cai.dto.admin.vo;
import com.ruoyi.cai.domain.UserAlbum;
import lombok.Data;
@Data
public class UserAlbumAdminVo extends UserAlbum {
/**
* 用户号/ID号
*/
private String usercode;
/**
* 昵称
*/
private String nickname;
/**
* 手机号
*/
private String mobile;
/**
* 头像
*/
private String avatar;
/**
* 性别
*/
private Integer gender;
private Integer age;
private Integer isAnchor;
}