935090232@qq.com
2021-01-06 7b9cb4464cf7a6db758214c5681b0ecdf01e3db4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
package com.matrix.system.app.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.matrix.core.tools.DateUtil;
import com.matrix.system.hive.bean.SysVipLabel;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
import java.util.Date;
import java.util.List;
 
/**
 * @author wzy
 * @date 2020-12-22
 **/
@ApiModel(value = "VipInfoDetailVo", description = "客户详细信息接口返回类")
public class VipInfoDetailVo {
 
    @ApiModelProperty(value = "头像")
    private String photo;
 
    @ApiModelProperty(value = "资金密码")
    private String password;
 
    @ApiModelProperty(value = "会员ID")
    private Long id;
 
    @ApiModelProperty(value = "会员编号")
    private String vipNo;
 
    @ApiModelProperty(value = "会员姓名")
    private String vipName;
 
    @ApiModelProperty(value = "手机号")
    private String phone;
 
    @ApiModelProperty(value = "性别")
    private String sex;
 
    @ApiModelProperty(value = "生日")
    @JsonFormat(pattern = DateUtil.DATE_FORMAT_DD, timezone = "GMT+8")
    private Date birthday;
 
    @ApiModelProperty(value = "省")
    private String province;
 
    @ApiModelProperty(value = "市")
    private String city;
 
    @ApiModelProperty(value = "区")
    private String area;
 
    @ApiModelProperty(value = "详细地址")
    private String address;
 
    @ApiModelProperty(value = "到店途径")
    private String arrivalWay;
 
    @ApiModelProperty(value = "推荐人ID")
    private Long recommendId;
 
    @ApiModelProperty(value = "备注")
    private String remark;
 
    @ApiModelProperty(value = "标签")
    private List<SysVipLabel> labels;
 
    public List<SysVipLabel> getLabels() {
        return labels;
    }
 
    public void setLabels(List<SysVipLabel> labels) {
        this.labels = labels;
    }
 
    public String getVipNo() {
        return vipNo;
    }
 
    public void setVipNo(String vipNo) {
        this.vipNo = vipNo;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getVipName() {
        return vipName;
    }
 
    public void setVipName(String vipName) {
        this.vipName = vipName;
    }
 
    public String getPhone() {
        return phone;
    }
 
    public void setPhone(String phone) {
        this.phone = phone;
    }
 
    public String getSex() {
        return sex;
    }
 
    public void setSex(String sex) {
        this.sex = sex;
    }
 
    public Date getBirthday() {
        return birthday;
    }
 
    public void setBirthday(Date birthday) {
        this.birthday = birthday;
    }
 
    public String getProvince() {
        return province;
    }
 
    public void setProvince(String province) {
        this.province = province;
    }
 
    public String getCity() {
        return city;
    }
 
    public void setCity(String city) {
        this.city = city;
    }
 
    public String getArea() {
        return area;
    }
 
    public void setArea(String area) {
        this.area = area;
    }
 
    public String getAddress() {
        return address;
    }
 
    public void setAddress(String address) {
        this.address = address;
    }
 
    public String getArrivalWay() {
        return arrivalWay;
    }
 
    public void setArrivalWay(String arrivalWay) {
        this.arrivalWay = arrivalWay;
    }
 
    public Long getRecommendId() {
        return recommendId;
    }
 
    public void setRecommendId(Long recommendId) {
        this.recommendId = recommendId;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public String getPhoto() {
        return photo;
    }
 
    public void setPhoto(String photo) {
        this.photo = photo;
    }
 
    public String getPassword() {
        return password;
    }
 
    public void setPassword(String password) {
        this.password = password;
    }
}