package com.fzzy.async.whhpjl.entity;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
|
import javax.persistence.Column;
|
import javax.persistence.Entity;
|
import javax.persistence.Id;
|
import javax.persistence.Table;
|
|
@Data
|
@Entity
|
@Table(name = "D_CHECK_ITEM_XMF")
|
public class Fz40WhjlCheckItemXmf {
|
|
@Id
|
@Column(name = "QLY_ORG_REPORT_NOODLES_ID_", length = 40)
|
@PropertyDef(label = "小麦粉质检结果ID")
|
private String qlyOrgReportNoodlesId; //小麦粉质检结果ID
|
|
@Column(name = "QLY_ORG_REPORT_ID_", length = 40)
|
@PropertyDef(label = "质检报告管理id")
|
private String qlyOrgReportId; //质检报告管理id
|
|
@Column(name = "PROCESSING_ACCURACY_", length = 50)
|
@PropertyDef(label = "加工精度")
|
private String processingAccuracy; //加工精度
|
|
@Column(name = "COLOR_ODOR_", length = 50)
|
@PropertyDef(label = "色泽气味")
|
private String colorOdor; //色泽气味
|
|
@Column(name = "WATER_CONTENT_", length = 50)
|
@PropertyDef(label = "水分含量")
|
private String waterContent; //水分含量
|
|
@Column(name = "CADMIUM_", length = 50)
|
@PropertyDef(label = "镉")
|
private String cadmium; //镉
|
|
@Column(name = "QUALITY_RESULT_", length = 50)
|
@PropertyDef(label = "质量判定")
|
private String qualityResult; //质量判定
|
|
@Column(name = "DELECTION_PERSON_", length = 50)
|
@PropertyDef(label = "检验人")
|
private String delectionPerson; //检验人
|
|
@Column(name = "DELECTION_START_TIME_", length = 50)
|
@PropertyDef(label = "检测开始时间")
|
private String delectionStartTime; //检测开始时间
|
|
@Column(name = "DELECTION_END_TIME_", length = 50)
|
@PropertyDef(label = "检测结束时间")
|
private String delectionEndTime; //检测结束时间
|
|
@Column(name = "INSPECTION_RESULT_", length = 50)
|
@PropertyDef(label = "检验结论")
|
private String inspectionResult; //检验结论
|
|
@Column(name = "ASH_CONTENT_", length = 50)
|
@PropertyDef(label = "灰分含量")
|
private String ashContent; //灰分含量
|
|
@Column(name = "FATTY_CONTENT_", length = 50)
|
@PropertyDef(label = "脂肪酸含量")
|
private String fattyContent; //脂肪酸含量
|
|
@Column(name = "SAND_CONTENT_", length = 50)
|
@PropertyDef(label = "含砂量")
|
private String sandContent; //含砂量
|
|
@Column(name = "LOOKS_FORM_", length = 50)
|
@PropertyDef(label = "外观形态")
|
private String looksForm; //外观形态
|
|
@Column(name = "WET_GLUTEN_", length = 50)
|
@PropertyDef(label = "湿面筋含量")
|
private String wetGluten; //湿面筋含量
|
|
@Column(name = "DEOXYNIVALENOL_", length = 50)
|
@PropertyDef(label = "脱氧雪腐镰刀菌烯醇")
|
private String deoxynivalenol; //脱氧雪腐镰刀菌烯醇
|
|
@Column(name = "ZEARALENONE_", length = 50)
|
@PropertyDef(label = "玉米赤霉烯酮")
|
private String zearalenone; //玉米赤霉烯酮
|
|
@Column(name = "LEAD_", length = 50)
|
@PropertyDef(label = "铅")
|
private String lead; //铅
|
|
@Column(name = "BENZOYL_PEROXIDE_", length = 50)
|
@PropertyDef(label = "过氧化苯甲酰")
|
private String benzoylPeroxide; //过氧化苯甲酰
|
|
@Column(name = "REPORT_FILE_", length = 100)
|
@PropertyDef(label = "报告文件")
|
private String reportFile; //报告文件
|
|
@Column(name = "HFHLJG_", length = 50)
|
@PropertyDef(label = "灰分含量结果")
|
private String hfhljg; //灰分含量结果
|
|
@Column(name = "ZFSHLJG_", length = 50)
|
@PropertyDef(label = "脂肪酸含量结果")
|
private String zfshljg; //脂肪酸含量结果
|
|
|
}
|