package com.landy.gum.report.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class InOutReturnSummaryReportQueryCondition extends BaseQueryCondition {
|
|
private String locationid;
|
private String beginDate;
|
private String endDate;
|
private String bbprId;
|
private String bbbrId;
|
|
public String getLocationid() {
|
return locationid;
|
}
|
|
public void setLocationid(String locationid) {
|
this.locationid = locationid;
|
}
|
|
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 getBbprId() {
|
return bbprId;
|
}
|
|
public void setBbprId(String bbprId) {
|
this.bbprId = bbprId;
|
}
|
|
public String getBbbrId() {
|
return bbbrId;
|
}
|
|
public void setBbbrId(String bbbrId) {
|
this.bbbrId = bbbrId;
|
}
|
|
}
|