package com.landy.gum.base.query;
|
|
import javax.persistence.Column;
|
import javax.persistence.Entity;
|
|
import com.landy.framework.core.query.BaseQueryItem;
|
|
@Entity
|
public class GetProductOnProductRunQueryItem extends BaseQueryItem {
|
|
private Integer bbprId;
|
private String bbprName;
|
private Double bbivSize;
|
private Double bbivRejectSize;
|
private Double bbivPriceAvg;
|
|
@Column(name = "bbpr_id")
|
public Integer getBbprId() {
|
return bbprId;
|
}
|
|
public void setBbprId(Integer bbprId) {
|
this.bbprId = bbprId;
|
addValidField("bbprId");
|
}
|
|
@Column(name = "bbpr_name")
|
public String getBbprName() {
|
return bbprName;
|
}
|
|
public void setBbprName(String bbprName) {
|
this.bbprName = bbprName;
|
addValidField("bbprName");
|
}
|
|
@Column(name = "bbiv_size")
|
public Double getBbivSize() {
|
return bbivSize;
|
}
|
|
public void setBbivSize(Double bbivSize) {
|
this.bbivSize = bbivSize;
|
addValidField("bbivSize");
|
}
|
|
@Column(name = "bbiv_reject_size")
|
public Double getBbivRejectSize() {
|
return bbivRejectSize;
|
}
|
|
public void setBbivRejectSize(Double bbivRejectSize) {
|
this.bbivRejectSize = bbivRejectSize;
|
addValidField("bbivRejectSize");
|
}
|
|
@Column(name = "bbiv_price_avg")
|
public Double getBbivPriceAvg() {
|
return bbivPriceAvg;
|
}
|
|
public void setBbivPriceAvg(Double bbivPriceAvg) {
|
this.bbivPriceAvg = bbivPriceAvg;
|
addValidField("bbivPriceAvg");
|
}
|
|
}
|