package cc.mrbird.febs.mall.vo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
@Data
|
@ApiModel(value = "MallMemberVo", description = "商城用户信息返回类")
|
public class MallMemberVo {
|
|
@ApiModelProperty(value = "id")
|
private Long id;
|
|
@ApiModelProperty(value = "昵称")
|
private String name;
|
|
@ApiModelProperty(value = "手机号")
|
private String phone;
|
|
@ApiModelProperty(value = "邮箱")
|
private String email;
|
|
@ApiModelProperty(value = "性别")
|
private String sex;
|
|
@ApiModelProperty(value = "邀请码")
|
private String inviteId;
|
|
@ApiModelProperty(value = "头像")
|
private String avatar;
|
|
@ApiModelProperty(value = "余额")
|
private String balance;
|
|
@ApiModelProperty(value = "代理等级")
|
private String levelName;
|
|
private String referrerName;
|
|
private String level;
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date createdTime;
|
|
/**
|
* 账户状态;1-正常 2-禁用
|
*/
|
private Integer accountStatus;
|
public static final int ACCOUNTSTATUS_Y = 1;
|
public static final int ACCOUNTSTATUS_N = 2;
|
|
}
|