package com.landy.gum.check.query;
|
|
import java.util.Date;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class C_R_GetCityCheckCollectQueryCondition extends BaseQueryCondition {
|
|
private Date beginDate;
|
private Date endDate;
|
private String[] orgIds;
|
private Integer tiJiaoNum;
|
private Integer processNum;
|
private Integer problemNum;
|
|
|
|
public Date getBeginDate() {
|
return beginDate;
|
}
|
|
public void setBeginDate(Date beginDate) {
|
this.beginDate = beginDate;
|
}
|
|
public Date getEndDate() {
|
return endDate;
|
}
|
|
public void setEndDate(Date endDate) {
|
this.endDate = endDate;
|
}
|
|
public String[] getOrgIds() {
|
return orgIds;
|
}
|
|
public void setOrgIds(String[] orgIds) {
|
this.orgIds = orgIds;
|
}
|
|
public Integer getTiJiaoNum() {
|
return tiJiaoNum;
|
}
|
|
public void setTiJiaoNum(Integer tiJiaoNum) {
|
this.tiJiaoNum = tiJiaoNum;
|
}
|
|
public Integer getProcessNum() {
|
return processNum;
|
}
|
|
public void setProcessNum(Integer processNum) {
|
this.processNum = processNum;
|
}
|
|
public Integer getProblemNum() {
|
return problemNum;
|
}
|
|
public void setProblemNum(Integer problemNum) {
|
this.problemNum = problemNum;
|
}
|
|
}
|