package com.landy.gum.out.query;
|
|
import javax.persistence.Column;
|
import javax.persistence.Entity;
|
|
import com.landy.framework.core.query.BaseQueryItem;
|
|
@Entity
|
public class PsCenterUpListQueryItem extends BaseQueryItem {
|
|
private String bbprId;
|
private String bbprSn;
|
private String bbprName;
|
private String bbprBrand;
|
private String bbprLeiXing;
|
private Double bbprSize;
|
private Double ouqdSize;
|
private Double ouqdSendSize;
|
private Double processSize;
|
private Integer weiwan;
|
private Double xuQiuSumSize;
|
private Long color;
|
|
@Column(name = "bbpr_id")
|
public String getBbprId() {
|
return bbprId;
|
}
|
|
public void setBbprId(String bbprId) {
|
this.bbprId = bbprId;
|
addValidField("bbprId");
|
}
|
|
@Column(name = "bbpr_sn")
|
public String getBbprSn() {
|
return bbprSn;
|
}
|
|
public void setBbprSn(String bbprSn) {
|
this.bbprSn = bbprSn;
|
addValidField("bbprSn");
|
}
|
|
@Column(name = "bbpr_name")
|
public String getBbprName() {
|
return bbprName;
|
}
|
|
public void setBbprName(String bbprName) {
|
this.bbprName = bbprName;
|
addValidField("bbprName");
|
}
|
|
@Column(name = "bbpr_brand")
|
public String getBbprBrand() {
|
return bbprBrand;
|
}
|
|
public void setBbprBrand(String bbprBrand) {
|
this.bbprBrand = bbprBrand;
|
addValidField("bbprBrand");
|
}
|
|
@Column(name = "bbpr_lei_xing")
|
public String getBbprLeiXing() {
|
return bbprLeiXing;
|
}
|
|
public void setBbprLeiXing(String bbprLeiXing) {
|
this.bbprLeiXing = bbprLeiXing;
|
addValidField("bbprLeiXing");
|
}
|
|
@Column(name = "bbpr_size")
|
public Double getBbprSize() {
|
return bbprSize;
|
}
|
|
public void setBbprSize(Double bbprSize) {
|
this.bbprSize = bbprSize;
|
addValidField("bbprSize");
|
}
|
|
@Column(name = "ouqd_size")
|
public Double getOuqdSize() {
|
return ouqdSize;
|
}
|
|
public void setOuqdSize(Double ouqdSize) {
|
this.ouqdSize = ouqdSize;
|
addValidField("ouqdSize");
|
}
|
|
@Column(name = "ouqd_send_size")
|
public Double getOuqdSendSize() {
|
return ouqdSendSize;
|
}
|
|
public void setOuqdSendSize(Double ouqdSendSize) {
|
this.ouqdSendSize = ouqdSendSize;
|
addValidField("ouqdSendSize");
|
}
|
|
@Column(name = "process_size")
|
public Double getProcessSize() {
|
return processSize;
|
}
|
|
public void setProcessSize(Double processSize) {
|
this.processSize = processSize;
|
addValidField("processSize");
|
}
|
|
@Column(name = "weiwan")
|
public Integer getWeiwan() {
|
return weiwan;
|
}
|
|
public void setWeiwan(Integer weiwan) {
|
this.weiwan = weiwan;
|
addValidField("weiwan");
|
}
|
|
@Column(name = "xu_qiu_sum_size")
|
public Double getXuQiuSumSize() {
|
return xuQiuSumSize;
|
}
|
|
public void setXuQiuSumSize(Double xuQiuSumSize) {
|
this.xuQiuSumSize = xuQiuSumSize;
|
addValidField("xuQiuSumSize");
|
}
|
|
@Column(name = "color")
|
public Long getColor() {
|
return color;
|
}
|
|
public void setColor(Long color) {
|
this.color = color;
|
addValidField("color");
|
}
|
|
}
|