package com.landy.gum.out.query;
|
|
import java.util.Date;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class PrintPsingA4GetProductQueryCondition extends BaseQueryCondition {
|
|
private Date ouqpDate;
|
private Integer locationid;
|
private String[] bbprIds;
|
|
public Date getOuqpDate() {
|
return ouqpDate;
|
}
|
|
public void setOuqpDate(Date ouqpDate) {
|
this.ouqpDate = ouqpDate;
|
}
|
|
public Integer getLocationid() {
|
return locationid;
|
}
|
|
public void setLocationid(Integer locationid) {
|
this.locationid = locationid;
|
}
|
|
public String[] getBbprIds() {
|
return bbprIds;
|
}
|
|
public void setBbprIds(String[] bbprIds) {
|
this.bbprIds = bbprIds;
|
}
|
|
}
|