package com.landy.gum.inout.query;
|
|
import javax.persistence.Column;
|
import javax.persistence.Entity;
|
|
import com.landy.framework.core.query.BaseQueryItem;
|
|
@Entity
|
public class IoOpeningClosingQueryItem extends BaseQueryItem {
|
|
private Integer bbprName;
|
private String bbprBriefName;
|
private String bbprStyle;
|
private String bbprUnit;
|
private String bbprSecondUnit;
|
private Integer bbprSecondSize;
|
private String bbprRemark;
|
private Double iocdOpeningSize;
|
private Double iocdInSize;
|
private Double iocdOutSize;
|
private Double iocdEndingSize;
|
private Double iocdOpeningRejectSize;
|
private Double iocdInRejectSize;
|
private Double iocdOutRejectSize;
|
private Double iocdEndingRejectSize;
|
|
@Column(name = "bbpr_name")
|
public Integer getBbprName() {
|
return bbprName;
|
}
|
|
public void setBbprName(Integer bbprName) {
|
this.bbprName = bbprName;
|
addValidField("bbprName");
|
}
|
|
@Column(name = "bbpr_brief_name")
|
public String getBbprBriefName() {
|
return bbprBriefName;
|
}
|
|
public void setBbprBriefName(String bbprBriefName) {
|
this.bbprBriefName = bbprBriefName;
|
addValidField("bbprBriefName");
|
}
|
|
@Column(name = "bbpr_style")
|
public String getBbprStyle() {
|
return bbprStyle;
|
}
|
|
public void setBbprStyle(String bbprStyle) {
|
this.bbprStyle = bbprStyle;
|
addValidField("bbprStyle");
|
}
|
|
@Column(name = "bbpr_unit")
|
public String getBbprUnit() {
|
return bbprUnit;
|
}
|
|
public void setBbprUnit(String bbprUnit) {
|
this.bbprUnit = bbprUnit;
|
addValidField("bbprUnit");
|
}
|
|
@Column(name = "bbpr_second_unit")
|
public String getBbprSecondUnit() {
|
return bbprSecondUnit;
|
}
|
|
public void setBbprSecondUnit(String bbprSecondUnit) {
|
this.bbprSecondUnit = bbprSecondUnit;
|
addValidField("bbprSecondUnit");
|
}
|
|
@Column(name = "bbpr_second_size")
|
public Integer getBbprSecondSize() {
|
return bbprSecondSize;
|
}
|
|
public void setBbprSecondSize(Integer bbprSecondSize) {
|
this.bbprSecondSize = bbprSecondSize;
|
addValidField("bbprSecondSize");
|
}
|
|
@Column(name = "bbpr_remark")
|
public String getBbprRemark() {
|
return bbprRemark;
|
}
|
|
public void setBbprRemark(String bbprRemark) {
|
this.bbprRemark = bbprRemark;
|
addValidField("bbprRemark");
|
}
|
|
@Column(name = "iocd_opening_size")
|
public Double getIocdOpeningSize() {
|
return iocdOpeningSize;
|
}
|
|
public void setIocdOpeningSize(Double iocdOpeningSize) {
|
this.iocdOpeningSize = iocdOpeningSize;
|
addValidField("iocdOpeningSize");
|
}
|
|
@Column(name = "iocd_in_size")
|
public Double getIocdInSize() {
|
return iocdInSize;
|
}
|
|
public void setIocdInSize(Double iocdInSize) {
|
this.iocdInSize = iocdInSize;
|
addValidField("iocdInSize");
|
}
|
|
@Column(name = "iocd_out_size")
|
public Double getIocdOutSize() {
|
return iocdOutSize;
|
}
|
|
public void setIocdOutSize(Double iocdOutSize) {
|
this.iocdOutSize = iocdOutSize;
|
addValidField("iocdOutSize");
|
}
|
|
@Column(name = "iocd_ending_size")
|
public Double getIocdEndingSize() {
|
return iocdEndingSize;
|
}
|
|
public void setIocdEndingSize(Double iocdEndingSize) {
|
this.iocdEndingSize = iocdEndingSize;
|
addValidField("iocdEndingSize");
|
}
|
|
@Column(name = "iocd_opening_reject_size")
|
public Double getIocdOpeningRejectSize() {
|
return iocdOpeningRejectSize;
|
}
|
|
public void setIocdOpeningRejectSize(Double iocdOpeningRejectSize) {
|
this.iocdOpeningRejectSize = iocdOpeningRejectSize;
|
addValidField("iocdOpeningRejectSize");
|
}
|
|
@Column(name = "iocd_in_reject_size")
|
public Double getIocdInRejectSize() {
|
return iocdInRejectSize;
|
}
|
|
public void setIocdInRejectSize(Double iocdInRejectSize) {
|
this.iocdInRejectSize = iocdInRejectSize;
|
addValidField("iocdInRejectSize");
|
}
|
|
@Column(name = "iocd_out_reject_size")
|
public Double getIocdOutRejectSize() {
|
return iocdOutRejectSize;
|
}
|
|
public void setIocdOutRejectSize(Double iocdOutRejectSize) {
|
this.iocdOutRejectSize = iocdOutRejectSize;
|
addValidField("iocdOutRejectSize");
|
}
|
|
@Column(name = "iocd_ending_reject_size")
|
public Double getIocdEndingRejectSize() {
|
return iocdEndingRejectSize;
|
}
|
|
public void setIocdEndingRejectSize(Double iocdEndingRejectSize) {
|
this.iocdEndingRejectSize = iocdEndingRejectSize;
|
addValidField("iocdEndingRejectSize");
|
}
|
|
}
|