package com.landy.gum.inout.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class VerifyProductSizeVsWareHouseCountSizeQueryCondition extends BaseQueryCondition {
|
|
private Integer locationid;
|
private String iochYwarMonth;
|
|
public Integer getLocationid() {
|
return locationid;
|
}
|
|
public void setLocationid(Integer locationid) {
|
this.locationid = locationid;
|
}
|
|
public String getIochYwarMonth() {
|
return iochYwarMonth;
|
}
|
|
public void setIochYwarMonth(String iochYwarMonth) {
|
this.iochYwarMonth = iochYwarMonth;
|
}
|
|
}
|