package com.ks.push.pojo.DO;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
import java.util.List;
|
|
public class BPushFilter implements Serializable {
|
private List<Integer> versionCodeList;
|
private List<String> uidList;
|
private List<String> deviceList;
|
private List<String> brandNameList;
|
private Date startPushTime;
|
private Date minActiveTime;
|
private Date maxActiveTime;
|
private Date minCreateTime;
|
private Date maxCreateTime;
|
private Date createTime;
|
private Date updateTime;
|
|
public List<Integer> getVersionCodeList() {
|
return versionCodeList;
|
}
|
|
public void setVersionCodeList(List<Integer> versionCodeList) {
|
this.versionCodeList = versionCodeList;
|
}
|
|
public List<String> getUidList() {
|
return uidList;
|
}
|
|
public void setUidList(List<String> uidList) {
|
this.uidList = uidList;
|
}
|
|
public List<String> getDeviceList() {
|
return deviceList;
|
}
|
|
public void setDeviceList(List<String> deviceList) {
|
this.deviceList = deviceList;
|
}
|
|
public List<String> getBrandNameList() {
|
return brandNameList;
|
}
|
|
public void setBrandNameList(List<String> brandNameList) {
|
this.brandNameList = brandNameList;
|
}
|
|
public Date getStartPushTime() {
|
return startPushTime;
|
}
|
|
public void setStartPushTime(Date startPushTime) {
|
this.startPushTime = startPushTime;
|
}
|
|
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 Date getMinCreateTime() {
|
return minCreateTime;
|
}
|
|
public void setMinCreateTime(Date minCreateTime) {
|
this.minCreateTime = minCreateTime;
|
}
|
|
public Date getMaxCreateTime() {
|
return maxCreateTime;
|
}
|
|
public void setMaxCreateTime(Date maxCreateTime) {
|
this.maxCreateTime = maxCreateTime;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
}
|