package com.landy.gum.inout.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class ProductItemForCheckQueryCondition extends BaseQueryCondition {
|
|
private String bbprId;
|
private Integer locationid;
|
private String bbwhId;
|
|
public String getBbprId() {
|
return bbprId;
|
}
|
|
public void setBbprId(String bbprId) {
|
this.bbprId = bbprId;
|
}
|
|
public Integer getLocationid() {
|
return locationid;
|
}
|
|
public void setLocationid(Integer locationid) {
|
this.locationid = locationid;
|
}
|
|
public String getBbwhId() {
|
return bbwhId;
|
}
|
|
public void setBbwhId(String bbwhId) {
|
this.bbwhId = bbwhId;
|
}
|
|
}
|