package com.landy.gum.inout.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class ProductItemInWarehouseQueryCondition extends BaseQueryCondition {
|
|
private String bbprId;
|
private String bbitIsExit;
|
private Integer locationid;
|
private String bbwhId;
|
|
public String getBbprId() {
|
return bbprId;
|
}
|
|
public void setBbprId(String bbprId) {
|
this.bbprId = bbprId;
|
}
|
|
public String getBbitIsExit() {
|
return bbitIsExit;
|
}
|
|
public void setBbitIsExit(String bbitIsExit) {
|
this.bbitIsExit = bbitIsExit;
|
}
|
|
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;
|
}
|
|
}
|