package com.landy.gum.report.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class CheckReportQueryCondition extends BaseQueryCondition {
|
|
private String locationid;
|
private String yearMonth;
|
private String bbwhId;
|
|
public String getLocationid() {
|
return locationid;
|
}
|
|
public void setLocationid(String locationid) {
|
this.locationid = locationid;
|
}
|
|
public String getYearMonth() {
|
return yearMonth;
|
}
|
|
public void setYearMonth(String yearMonth) {
|
this.yearMonth = yearMonth;
|
}
|
|
public String getBbwhId() {
|
return bbwhId;
|
}
|
|
public void setBbwhId(String bbwhId) {
|
this.bbwhId = bbwhId;
|
}
|
|
}
|