init
This commit is contained in:
@@ -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;
|
||||
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user