package com.landy.gum.inout.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class CheckDetailPrintQueryCondition extends BaseQueryCondition {
|
|
private Integer locationid;
|
private String[] bbprIdArray;
|
private String[] iocdIdArray;
|
|
public Integer getLocationid() {
|
return locationid;
|
}
|
|
public void setLocationid(Integer locationid) {
|
this.locationid = locationid;
|
}
|
|
public String[] getBbprIdArray() {
|
return bbprIdArray;
|
}
|
|
public void setBbprIdArray(String[] bbprIdArray) {
|
this.bbprIdArray = bbprIdArray;
|
}
|
|
public String[] getIocdIdArray() {
|
return iocdIdArray;
|
}
|
|
public void setIocdIdArray(String[] iocdIdArray) {
|
this.iocdIdArray = iocdIdArray;
|
}
|
|
}
|