package com.landy.gum.inout.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class VerifyCheckProductIsAllQueryCondition extends BaseQueryCondition {
|
|
private Integer locationid;
|
private String iochYearMonth;
|
|
public Integer getLocationid() {
|
return locationid;
|
}
|
|
public void setLocationid(Integer locationid) {
|
this.locationid = locationid;
|
}
|
|
public String getIochYearMonth() {
|
return iochYearMonth;
|
}
|
|
public void setIochYearMonth(String iochYearMonth) {
|
this.iochYearMonth = iochYearMonth;
|
}
|
|
}
|