| | |
| | | package cc.mrbird.febs.mall.vo; |
| | | |
| | | import cn.hutool.core.date.DateTime; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | @ApiModelProperty(value = "id") |
| | | private Long id; |
| | | |
| | | @ApiModelProperty(value = "昵称") |
| | | private String name; |
| | | @ApiModelProperty(value = "memberId") |
| | | private Long memberId; |
| | | |
| | | @ApiModelProperty(value = "手机号") |
| | | private String phone; |
| | | |
| | | @ApiModelProperty(value = "邮箱") |
| | | private String email; |
| | | |
| | | @ApiModelProperty(value = "性别") |
| | | private String sex; |
| | | @ApiModelProperty(value = "登录账号") |
| | | private String accountLogin; |
| | | |
| | | @ApiModelProperty(value = "邀请码") |
| | | private String inviteId; |
| | | |
| | | @ApiModelProperty(value = "头像") |
| | | private String avatar; |
| | | |
| | | @ApiModelProperty(value = "余额") |
| | | private BigDecimal balance; |
| | | |
| | | @ApiModelProperty(value = "代理等级") |
| | | private String levelName; |
| | | |
| | | @ApiModelProperty(value = "推荐人昵称") |
| | | private String referrerName; |
| | | |
| | | private String level; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date createdTime; |
| | | @ApiModelProperty(value = "用户充值提现地址") |
| | | private String bindPhone; |
| | | |
| | | /** |
| | | * 账户状态;1-正常 2-禁用 |
| | |
| | | public static final int ACCOUNTSTATUS_Y = 1; |
| | | public static final int ACCOUNTSTATUS_N = 2; |
| | | |
| | | @ApiModelProperty(value = "是否设置收款方式", example = "1是2否") |
| | | private Integer hasPayment = 2; |
| | | @ApiModelProperty(value = "是否为代理 1-是 2-否") |
| | | private Integer partner; |
| | | |
| | | @ApiModelProperty(value = "是否设置交易密码", example = "1是2否") |
| | | private Integer hasTradePwd = 2; |
| | | @ApiModelProperty(value = "是否冻结 1:是 0 :否") |
| | | private Integer isFrozen; |
| | | |
| | | @ApiModelProperty(value = "绑定手机号") |
| | | private String bindPhone; |
| | | @ApiModelProperty(value = "余额") |
| | | private BigDecimal balance; |
| | | |
| | | @ApiModelProperty(value = "累计消费") |
| | | private BigDecimal totalCost; |
| | | |
| | | @ApiModelProperty(value = "赠送积分") |
| | | private BigDecimal score; |
| | | |
| | | @ApiModelProperty(value = "抽奖积分") |
| | | private BigDecimal prizeScore; |
| | | |
| | | /** |
| | | * 董事 |
| | | */ |
| | | @ApiModelProperty(value = "是否为董事 1-是 2-否") |
| | | private Integer director; |
| | | |
| | | /** |
| | | * 店长 |
| | | */ |
| | | @ApiModelProperty(value = "是否店长 1-是 2-否") |
| | | private Integer storeMaster; |
| | | |
| | | @ApiModelProperty(value = "补贴额度") |
| | | private BigDecimal totalScore; |
| | | |
| | | @ApiModelProperty(value = "贡献点") |
| | | private Integer star; |
| | | |
| | | @ApiModelProperty(value = "凭证数量") |
| | | private BigDecimal voucherCnt; |
| | | |
| | | @ApiModelProperty(value = "内转标识 1:开启 2:关闭") |
| | | private Integer insideWith; |
| | | @ApiModelProperty(value = "系统充值地址") |
| | | private String sysAddress; |
| | | |
| | | } |