package com.landy.gum.production.query;
|
|
import java.util.Date;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class MonthProductionEntryQueryCondition extends BaseQueryCondition {
|
|
private Date startCreateTime;
|
private Date endCreateTime;
|
private Integer[] factoryIds;
|
|
public Date getStartCreateTime() {
|
return startCreateTime;
|
}
|
|
public void setStartCreateTime(Date startCreateTime) {
|
this.startCreateTime = startCreateTime;
|
}
|
|
public Date getEndCreateTime() {
|
return endCreateTime;
|
}
|
|
public void setEndCreateTime(Date endCreateTime) {
|
this.endCreateTime = endCreateTime;
|
}
|
|
public Integer[] getFactoryIds() {
|
return factoryIds;
|
}
|
|
public void setFactoryIds(Integer[] factoryIds) {
|
this.factoryIds = factoryIds;
|
}
|
|
}
|