package com.landy.gum.inout.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class WarehouseTreeCheckingQueryCondition extends BaseQueryCondition {
|
|
private Integer locationid;
|
private String yearMonth;
|
private String notBbwhId;
|
|
public Integer getLocationid() {
|
return locationid;
|
}
|
|
public void setLocationid(Integer locationid) {
|
this.locationid = locationid;
|
}
|
|
public String getYearMonth() {
|
return yearMonth;
|
}
|
|
public void setYearMonth(String yearMonth) {
|
this.yearMonth = yearMonth;
|
}
|
|
public String getNotBbwhId() {
|
return notBbwhId;
|
}
|
|
public void setNotBbwhId(String notBbwhId) {
|
this.notBbwhId = notBbwhId;
|
}
|
|
}
|