package com.landy.gum.inout.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class HistoryDeliverDetailQueryCondition extends BaseQueryCondition {
|
|
private Integer[] factoryIds;
|
private Integer bbbpId;
|
|
public Integer[] getFactoryIds() {
|
return factoryIds;
|
}
|
|
public void setFactoryIds(Integer[] factoryIds) {
|
this.factoryIds = factoryIds;
|
}
|
|
public Integer getBbbpId() {
|
return bbbpId;
|
}
|
|
public void setBbbpId(Integer bbbpId) {
|
this.bbbpId = bbbpId;
|
}
|
|
}
|