package com.landy.gum.base.query;
|
|
import java.util.Date;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class BbStuffStoreDetailQueryCondition extends BaseQueryCondition {
|
|
private String bbstName;
|
private String bbstStyle;
|
private String cgsdVolume;
|
private String bbstType;
|
private Double bbstAmount;
|
private Double bbstRejectAmount;
|
private Date beginDate;
|
private Date endDate;
|
|
public String getBbstName() {
|
return bbstName;
|
}
|
|
public void setBbstName(String bbstName) {
|
this.bbstName = bbstName;
|
}
|
|
public String getBbstStyle() {
|
return bbstStyle;
|
}
|
|
public void setBbstStyle(String bbstStyle) {
|
this.bbstStyle = bbstStyle;
|
}
|
|
public String getCgsdVolume() {
|
return cgsdVolume;
|
}
|
|
public void setCgsdVolume(String cgsdVolume) {
|
this.cgsdVolume = cgsdVolume;
|
}
|
|
public String getBbstType() {
|
return bbstType;
|
}
|
|
public void setBbstType(String bbstType) {
|
this.bbstType = bbstType;
|
}
|
|
public Double getBbstAmount() {
|
return bbstAmount;
|
}
|
|
public void setBbstAmount(Double bbstAmount) {
|
this.bbstAmount = bbstAmount;
|
}
|
|
public Double getBbstRejectAmount() {
|
return bbstRejectAmount;
|
}
|
|
public void setBbstRejectAmount(Double bbstRejectAmount) {
|
this.bbstRejectAmount = bbstRejectAmount;
|
}
|
|
public Date getBeginDate() {
|
return beginDate;
|
}
|
|
public void setBeginDate(Date beginDate) {
|
this.beginDate = beginDate;
|
}
|
|
public Date getEndDate() {
|
return endDate;
|
}
|
|
public void setEndDate(Date endDate) {
|
this.endDate = endDate;
|
}
|
|
}
|