All Downloads are FREE. Search and download functionalities are using the official Maven repository.

k.e.book.ddh.entity.CcUserAddDTO Maven / Gradle / Ivy


package k.e.book.ddh.entity;

import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

import javax.validation.constraints.NotNull;
import java.io.Serializable;
import java.util.Date;
/**
 * @author kk
 * @date 2023-05-21 14:25
 */
@Data
@ApiModel(value="CcUserAddDTO", description="CcUser")
public class CcUserAddDTO implements Serializable{

    @ApiModelProperty(value = "ID")
    private Integer id;

    @ApiModelProperty(value = "组别ID")
    private Integer groupId;

    @ApiModelProperty(value = "用户名")
    private String username;

    @ApiModelProperty(value = "昵称")
    private String nickname;

    @ApiModelProperty(value = "密码")
    private String password;

    @ApiModelProperty(value = "密码盐")
    private String salt;

    @ApiModelProperty(value = "邀请码")
    private String inviteCode;

    @ApiModelProperty(value = "电子邮箱")
    private String email;

    @ApiModelProperty(value = "手机号")
    private String mobile;

    @ApiModelProperty(value = "头像")
    private String avatar;

    @ApiModelProperty(value = "等级")
    private Integer level;

    @ApiModelProperty(value = "性别")
    private Integer gender;

    @ApiModelProperty(value = "生日")
    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date birthday;

    @ApiModelProperty(value = "格言")
    private String bio;

    @ApiModelProperty(value = "余额")
    private Long money;

    @ApiModelProperty(value = "冻结余额")
    private Long freezeMoney;

    @ApiModelProperty(value = "积分")
    private Integer score;

    @ApiModelProperty(value = "经验值")
    private Long credits;

    @ApiModelProperty(value = "被邀请人消费返点总数")
    private Long invitedConsumeMoney;

    @ApiModelProperty(value = "连续登录天数")
    private Integer successions;

    @ApiModelProperty(value = "最大连续登录天数")
    private Integer maxsuccessions;

    @ApiModelProperty(value = "上次登录时间")
    private Integer prevtime;

    @ApiModelProperty(value = "登录时间")
    private Integer logintime;

    @ApiModelProperty(value = "登录IP")
    private String loginip;

    @ApiModelProperty(value = "失败次数")
    private Integer loginfailure;

    @ApiModelProperty(value = "加入IP")
    private String joinip;

    @ApiModelProperty(value = "加入时间")
    private Integer jointime;

    @ApiModelProperty(value = "创建时间")
    private Integer createtime;

    @ApiModelProperty(value = "更新时间")
    private Integer updatetime;

    @ApiModelProperty(value = "Token")
    private String token;

    @ApiModelProperty(value = "链上用户秘钥")
    private String userKey;

    @ApiModelProperty(value = "链上用户地址")
    private String chainAddress;

    @ApiModelProperty(value = "状态")
    private String status;

    @ApiModelProperty(value = "验证")
    private String verification;

    @ApiModelProperty(value = "用户的标识,对当前公众号唯一")
    private String openId;

    @ApiModelProperty(value = "支付密码")
    private String payPassword;

    @ApiModelProperty(value = "是否身份核验")
    private Integer isAuthentication;

    @ApiModelProperty(value = "购买记录展示:1=显示,0=隐藏")
    private Integer productShow;

    @ApiModelProperty(value = "是否绑定银行卡:1=已绑卡,0=未绑卡")
    private Integer bindCardStatus;

    @ApiModelProperty(value = "头像框")
    private String avatarFrame;

    @ApiModelProperty(value = "认证类型 1 发现(+V)")
    private Integer approveType;

    @ApiModelProperty(value = "燃料")
    private Integer fuel;

    @ApiModelProperty(value = "背景图片")
    private String backgroundImg;

    @ApiModelProperty(value = "藏品展示,1=显示,0=隐藏")
    private Boolean collectShow;

    @ApiModelProperty(value = "个人简介")
    private String personalIntroduction;

    @ApiModelProperty(value = "createdAt")
    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date createdAt;

    @ApiModelProperty(value = "updatedAt")
    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date updatedAt;

    @ApiModelProperty(value = "deletedAt")
    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date deletedAt;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy