Helius
2020-12-22 66a014290fe3f7540ea460467c80bceea03c12a4
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
package com.matrix.system.app.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
/**
 * @author wzy
 * @date 2020-12-21
 **/
@ApiModel(value = "VipInfoListDto", description = "获取会员列表参数类")
public class VipInfoListDto {
 
    @ApiModelProperty(value = "查询参数(客户姓名/手机/会员编号/拼音)", example = "")
    private String queryKey;
 
    @ApiModelProperty(value = "排序 desc/asc", example = "asc")
    private String order = "asc";
 
    @ApiModelProperty(value = "排序字段 monthArrived(本月到店次数) yearArrived(本年) used(消费) consume(消耗) vipLevel(会员等级) arriveTime(上次到店)", example = "zjm")
    private String sort = "zjm";
 
    @ApiModelProperty(value = "生日 1-三天内生日 2-本月生日 3-下月生日")
    private String birthType;
 
    @ApiModelProperty(value = "会员类型ID")
    private Long vipType;
 
    @ApiModelProperty(value = "其他 2-新客户 1-老客户")
    private String other;
 
    @ApiModelProperty(hidden = true)
    private Long shopId;
 
    public String getQueryKey() {
        return queryKey;
    }
 
    public void setQueryKey(String queryKey) {
        this.queryKey = queryKey;
    }
 
    public String getOrder() {
        return order;
    }
 
    public void setOrder(String order) {
        this.order = order;
    }
 
    public String getSort() {
        return sort;
    }
 
    public void setSort(String sort) {
        this.sort = sort;
    }
 
    public Long getShopId() {
        return shopId;
    }
 
    public void setShopId(Long shopId) {
        this.shopId = shopId;
    }
 
    public String getBirthType() {
        return birthType;
    }
 
    public void setBirthType(String birthType) {
        this.birthType = birthType;
    }
 
    public Long getVipType() {
        return vipType;
    }
 
    public void setVipType(Long vipType) {
        this.vipType = vipType;
    }
 
    public String getOther() {
        return other;
    }
 
    public void setOther(String other) {
        this.other = other;
    }
}