| | |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.experimental.Accessors; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonInclude; |
| | | /** |
| | | * <p> |
| | | * 会员表 |
| | |
| | | private String avatar; |
| | | |
| | | @ApiModelProperty(value = "会员姓名") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String realName; |
| | | |
| | | @ApiModelProperty(value = "身份证号") |
| | | private String idNumber; |
| | | |
| | | @ApiModelProperty(value = "联系电话") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String phone; |
| | | |
| | | @ApiModelProperty(value = "性别 0=女,1=男,2=未知") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private GenderEnum gender; |
| | | |
| | | @ApiModelProperty(value = "等级") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private Integer level; |
| | | |
| | | @ApiModelProperty(value = "会员积分") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private Integer totalPoints; |
| | | |
| | | @ApiModelProperty(value = "已用积分") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private Integer usedPoints; |
| | | |
| | | @ApiModelProperty(value = "微信openid") |
| | |
| | | private Integer delFlag; |
| | | |
| | | @ApiModelProperty(value = "1未认证,2已认证") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private Integer isAuthentication; |
| | | |
| | | @ApiModelProperty(value = "后台对应id") |