package com.ks.goldcorn.query;
|
|
public class SourceQuery {
|
|
private Long appId;
|
private String nameKey;
|
private Integer state;
|
private long start;
|
private int count;
|
|
public Long getAppId() {
|
return appId;
|
}
|
|
public void setAppId(Long appId) {
|
this.appId = appId;
|
}
|
|
public String getNameKey() {
|
return nameKey;
|
}
|
|
public void setNameKey(String nameKey) {
|
this.nameKey = nameKey;
|
}
|
|
public long getStart() {
|
return start;
|
}
|
|
public void setStart(long start) {
|
this.start = start;
|
}
|
|
public int getCount() {
|
return count;
|
}
|
|
public void setCount(int count) {
|
this.count = count;
|
}
|
|
public Integer getState() {
|
return state;
|
}
|
|
public void setState(Integer state) {
|
this.state = state;
|
}
|
}
|