yujian
2020-05-07 a9c9da611563738e2974103a45270d5857b746b6
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
package com.yeshi.fanli.dto.user;
 
import java.math.BigDecimal;
import java.util.Date;
 
public class ThreeSaleFocusDTO {
    private String key;
    private Boolean stateValid;
    private Boolean taobaoBind;
    private Boolean weixinBind;
    private Integer minFansNum;
    private Integer maxFansNum;
    private Date minActiveTime;
    private Date maxActiveTime;
    private BigDecimal minIncome;
    private BigDecimal maxIncome;
 
 
    public String getKey() {
        return key;
    }
 
    public void setKey(String key) {
        this.key = key;
    }
 
    public Boolean getStateValid() {
        return stateValid;
    }
 
    public void setStateValid(Boolean stateValid) {
        this.stateValid = stateValid;
    }
 
    public Boolean getTaobaoBind() {
        return taobaoBind;
    }
 
    public void setTaobaoBind(Boolean taobaoBind) {
        this.taobaoBind = taobaoBind;
    }
 
    public Boolean getWeixinBind() {
        return weixinBind;
    }
 
    public void setWeixinBind(Boolean weixinBind) {
        this.weixinBind = weixinBind;
    }
 
    public Integer getMinFansNum() {
        return minFansNum;
    }
 
    public void setMinFansNum(Integer minFansNum) {
        this.minFansNum = minFansNum;
    }
 
    public Integer getMaxFansNum() {
        return maxFansNum;
    }
 
    public void setMaxFansNum(Integer maxFansNum) {
        this.maxFansNum = maxFansNum;
    }
 
    public Date getMinActiveTime() {
        return minActiveTime;
    }
 
    public void setMinActiveTime(Date minActiveTime) {
        this.minActiveTime = minActiveTime;
    }
 
    public Date getMaxActiveTime() {
        return maxActiveTime;
    }
 
    public void setMaxActiveTime(Date maxActiveTime) {
        this.maxActiveTime = maxActiveTime;
    }
 
    public BigDecimal getMinIncome() {
        return minIncome;
    }
 
    public void setMinIncome(BigDecimal minIncome) {
        this.minIncome = minIncome;
    }
 
    public BigDecimal getMaxIncome() {
        return maxIncome;
    }
 
    public void setMaxIncome(BigDecimal maxIncome) {
        this.maxIncome = maxIncome;
    }
 
}