package com.landy.gum.inout.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class CheckDetailItemEditQueryCondition extends BaseQueryCondition {
|
|
private String iochId;
|
private Integer locationid;
|
private String bbprId;
|
private Integer profitOrLoss;
|
private String iochYearMonth;
|
|
public String getIochId() {
|
return iochId;
|
}
|
|
public void setIochId(String iochId) {
|
this.iochId = iochId;
|
}
|
|
public Integer getLocationid() {
|
return locationid;
|
}
|
|
public void setLocationid(Integer locationid) {
|
this.locationid = locationid;
|
}
|
|
public String getBbprId() {
|
return bbprId;
|
}
|
|
public void setBbprId(String bbprId) {
|
this.bbprId = bbprId;
|
}
|
|
public Integer getProfitOrLoss() {
|
return profitOrLoss;
|
}
|
|
public void setProfitOrLoss(Integer profitOrLoss) {
|
this.profitOrLoss = profitOrLoss;
|
}
|
|
public String getIochYearMonth() {
|
return iochYearMonth;
|
}
|
|
public void setIochYearMonth(String iochYearMonth) {
|
this.iochYearMonth = iochYearMonth;
|
}
|
|
}
|