package com.landy.gum.inout.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class IoOpeningClosingQueryCondition extends BaseQueryCondition {
|
|
private String factoryId;
|
private Integer bbprBbbrId;
|
private String bbprName;
|
private String bbprStyle;
|
private String bbprUnit;
|
private String bbprGrammage;
|
private String beginDate;
|
private String endDate;
|
private String yearMonthPrev;
|
|
public String getFactoryId() {
|
return factoryId;
|
}
|
|
public void setFactoryId(String factoryId) {
|
this.factoryId = factoryId;
|
}
|
|
public Integer getBbprBbbrId() {
|
return bbprBbbrId;
|
}
|
|
public void setBbprBbbrId(Integer bbprBbbrId) {
|
this.bbprBbbrId = bbprBbbrId;
|
}
|
|
public String getBbprName() {
|
return bbprName;
|
}
|
|
public void setBbprName(String bbprName) {
|
this.bbprName = bbprName;
|
}
|
|
public String getBbprStyle() {
|
return bbprStyle;
|
}
|
|
public void setBbprStyle(String bbprStyle) {
|
this.bbprStyle = bbprStyle;
|
}
|
|
public String getBbprUnit() {
|
return bbprUnit;
|
}
|
|
public void setBbprUnit(String bbprUnit) {
|
this.bbprUnit = bbprUnit;
|
}
|
|
public String getBbprGrammage() {
|
return bbprGrammage;
|
}
|
|
public void setBbprGrammage(String bbprGrammage) {
|
this.bbprGrammage = bbprGrammage;
|
}
|
|
public String getBeginDate() {
|
return beginDate;
|
}
|
|
public void setBeginDate(String beginDate) {
|
this.beginDate = beginDate;
|
}
|
|
public String getEndDate() {
|
return endDate;
|
}
|
|
public void setEndDate(String endDate) {
|
this.endDate = endDate;
|
}
|
|
public String getYearMonthPrev() {
|
return yearMonthPrev;
|
}
|
|
public void setYearMonthPrev(String yearMonthPrev) {
|
this.yearMonthPrev = yearMonthPrev;
|
}
|
|
}
|