package com.landy.gum.production.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class MonthProductionEntryQueryCondition extends BaseQueryCondition {
|
|
private String beginDate;
|
private String endDate;
|
private Integer[] factoryIds;
|
|
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;
|
}
|
|
public Integer[] getFactoryIds() {
|
return factoryIds;
|
}
|
|
public void setFactoryIds(Integer[] factoryIds) {
|
this.factoryIds = factoryIds;
|
}
|
|
}
|