package com.landy.gum.check.query;
|
|
import java.util.Date;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class C_R_getSchoolDetailListQueryCondition extends BaseQueryCondition {
|
|
private String orgId;
|
private String sccaId;
|
private Date beginDate;
|
private Date endDate;
|
private Integer problemSize;
|
private Integer isNotNull;
|
private Integer isNull;
|
|
public String getOrgId() {
|
return orgId;
|
}
|
|
public Date getEndDate() {
|
return endDate;
|
}
|
|
public void setEndDate(Date endDate) {
|
this.endDate = endDate;
|
}
|
|
public Date getBeginDate() {
|
return beginDate;
|
}
|
|
public void setBeginDate(Date beginDate) {
|
this.beginDate = beginDate;
|
}
|
|
public void setOrgId(String orgId) {
|
this.orgId = orgId;
|
}
|
|
public String getSccaId() {
|
return sccaId;
|
}
|
|
public void setSccaId(String sccaId) {
|
this.sccaId = sccaId;
|
}
|
|
public Integer getProblemSize() {
|
return problemSize;
|
}
|
|
public void setProblemSize(Integer problemSize) {
|
this.problemSize = problemSize;
|
}
|
|
public Integer getIsNotNull() {
|
return isNotNull;
|
}
|
|
public void setIsNotNull(Integer isNotNull) {
|
this.isNotNull = isNotNull;
|
}
|
|
public Integer getIsNull() {
|
return isNull;
|
}
|
|
public void setIsNull(Integer isNull) {
|
this.isNull = isNull;
|
}
|
|
|
|
|
}
|