package com.landy.gum.inout.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class IoDeliverDetailQueryCondition extends BaseQueryCondition {
|
|
private Integer[] factoryIds;
|
private Integer[] iodeId;
|
|
public Integer[] getFactoryIds() {
|
return factoryIds;
|
}
|
|
public void setFactoryIds(Integer[] factoryIds) {
|
this.factoryIds = factoryIds;
|
}
|
|
public Integer[] getIodeId() {
|
return iodeId;
|
}
|
|
public void setIodeId(Integer[] iodeId) {
|
this.iodeId = iodeId;
|
}
|
|
}
|