package com.landy.gum.inout.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class OpeningClosingCheckedQueryCondition extends BaseQueryCondition {
|
|
private Integer factoryId;
|
private String yearMonth;
|
|
public Integer getFactoryId() {
|
return factoryId;
|
}
|
|
public void setFactoryId(Integer factoryId) {
|
this.factoryId = factoryId;
|
}
|
|
public String getYearMonth() {
|
return yearMonth;
|
}
|
|
public void setYearMonth(String yearMonth) {
|
this.yearMonth = yearMonth;
|
}
|
|
}
|