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;
|
}
|
|
}
|