package com.landy.gum.check.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class C_R_GetSchoolCheckNumQueryCondition extends BaseQueryCondition {
|
|
private String[] orgIds;
|
private String beginDate;
|
private String endDate;
|
|
public String[] getOrgIds() {
|
return orgIds;
|
}
|
|
public void setOrgIds(String[] orgIds) {
|
this.orgIds = orgIds;
|
}
|
|
public String getBeginDate() {
|
return beginDate;
|
}
|
|
public void setBeginDate(String beginDate) {
|
this.beginDate = beginDate;
|
}
|
|
public String getEndDate() {
|
return endDate;
|
}
|
|
public void setEndDate(String endDate) {
|
this.endDate = endDate;
|
}
|
|
}
|