package com.landy.gum.inout.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class OpeningClosingForPrintQueryCondition extends BaseQueryCondition {
|
|
private String bbbrIds;
|
private String ioocYearMonth;
|
|
public String getBbbrIds() {
|
return bbbrIds;
|
}
|
|
public void setBbbrIds(String bbbrIds) {
|
this.bbbrIds = bbbrIds;
|
}
|
|
public String getIoocYearMonth() {
|
return ioocYearMonth;
|
}
|
|
public void setIoocYearMonth(String ioocYearMonth) {
|
this.ioocYearMonth = ioocYearMonth;
|
}
|
|
}
|