package com.ks.goldcorn.query;
|
|
import java.util.Date;
|
import java.util.List;
|
|
public class RecordQuery {
|
private String uid;
|
private Long appId;
|
private Integer type;
|
private Date minCreateTime;
|
private Date maxCreateTime;
|
private List<String> sortList;
|
private long start;
|
private int count;
|
|
public int getCount() {
|
return count;
|
}
|
|
public void setCount(int count) {
|
this.count = count;
|
}
|
|
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 String getUid() {
|
return uid;
|
}
|
|
public void setUid(String uid) {
|
this.uid = uid;
|
}
|
|
public Long getAppId() {
|
return appId;
|
}
|
|
public void setAppId(Long appId) {
|
this.appId = appId;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
public List<String> getSortList() {
|
return sortList;
|
}
|
|
public void setSortList(List<String> sortList) {
|
this.sortList = sortList;
|
}
|
|
public long getStart() {
|
return start;
|
}
|
|
public void setStart(long start) {
|
this.start = start;
|
}
|
}
|