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