Helius
2020-12-22 1de8d61a544e889ef4a8ed86d438f55994216cd1
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
package com.matrix.system.app.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
/**
 * @author wzy
 * @date 2020-12-22
 **/
@ApiModel(value = "VipInfoListVo", description = "会员列表返回类")
public class VipInfoListVo {
 
    @ApiModelProperty(value = "会员姓名")
    private String vipName;
 
    @ApiModelProperty(value = "会员手机号")
    private String phone;
 
    @ApiModelProperty(value = "到店次数")
    private Integer arriveCnt;
 
    @ApiModelProperty(value = "头像")
    private String photo;
 
    @ApiModelProperty(value = "会员ID")
    private Long 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 Integer getArriveCnt() {
        return arriveCnt;
    }
 
    public void setArriveCnt(Integer arriveCnt) {
        this.arriveCnt = arriveCnt;
    }
 
    public String getPhoto() {
        return photo;
    }
 
    public void setPhoto(String photo) {
        this.photo = photo;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
}