package cc.mrbird.febs.mall.vo;
|
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
@Data
|
@ApiModel(value = "AdminMallMemberVo", description = "信息返回类")
|
public class AdminMallMemberVo {
|
|
private Long id;
|
|
private Date createdTime;
|
|
/**
|
* 登录账号
|
*/
|
private String accountLogin;
|
/**
|
* 姓名
|
*/
|
private String name;
|
|
/**
|
* 手机号
|
*/
|
private String phone;
|
|
/**
|
* 邮箱
|
*/
|
private String email;
|
|
/**
|
* 邀请码
|
*/
|
private String inviteId;
|
|
/**
|
* 父级邀请码
|
*/
|
private String referrerId;
|
|
/**
|
* 邀请码链
|
*/
|
private String referrerIds;
|
|
/**
|
* 代理级别
|
*/
|
private String level;
|
|
/**
|
* 账户状态;1-正常 2-禁用
|
*/
|
private Integer accountStatus;
|
/**
|
* 账号类型
|
*/
|
private Integer accountType;
|
|
private String account;
|
|
private String bindPhone;
|
|
private String referrerName;
|
|
private String query;
|
|
private String levelName;
|
|
/**
|
* 董事
|
*/
|
private Integer director;
|
|
/**
|
* 店长
|
*/
|
private Integer storeMaster;
|
|
/**
|
* 联创 1-是 2-否
|
*/
|
private Integer creater;
|
|
/**
|
* 合伙人 1-是 2-否
|
*/
|
private Integer partner;
|
|
//内转标识 1:开启 2:关闭
|
private Integer insideWith;
|
|
//提现开关 1:开启 2:关闭
|
private Integer outsideWith;
|
|
private String userKey;
|
|
private Integer isFrozen;//是否冻结 1:是 0 :否
|
|
private BigDecimal balance;
|
private BigDecimal staticNft;
|
private BigDecimal trendsNft;
|
private BigDecimal frozenNft;
|
private BigDecimal fcmCntAva;
|
private BigDecimal fcmCntFrozen;
|
private BigDecimal tokenAva;
|
private BigDecimal tokenFrozen;
|
private BigDecimal totalPerk;
|
|
|
|
private BigDecimal chargeAmount;
|
|
private BigDecimal amountBuy;
|
|
private BigDecimal amountPerk;
|
private BigDecimal withDrawAmount;
|
}
|