package com.landy.gum.base.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class WareHouseQueryCondition extends BaseQueryCondition {
|
|
private String bbwhSn;
|
private String bbwtName;
|
private String bbwtState;
|
private Integer locationid;
|
|
public String getBbwhSn() {
|
return bbwhSn;
|
}
|
|
public void setBbwhSn(String bbwhSn) {
|
this.bbwhSn = bbwhSn;
|
}
|
|
public String getBbwtName() {
|
return bbwtName;
|
}
|
|
public void setBbwtName(String bbwtName) {
|
this.bbwtName = bbwtName;
|
}
|
|
public String getBbwtState() {
|
return bbwtState;
|
}
|
|
public void setBbwtState(String bbwtState) {
|
this.bbwtState = bbwtState;
|
}
|
|
public Integer getLocationid() {
|
return locationid;
|
}
|
|
public void setLocationid(Integer locationid) {
|
this.locationid = locationid;
|
}
|
|
}
|