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_DM")
|
public class Fz40WhjlCheckItemDm {
|
|
@Id
|
@Column(name = "QLY_ORG_REPORT_RICE_ID_", length = 40)
|
@PropertyDef(label = "大米质检结果ID")
|
private String qlyOrgReportRiceId; //大米质检结果ID
|
|
@Column(name = "QLY_ORG_REPORT_ID_", length = 40)
|
@PropertyDef(label = "质检报告管理id")
|
private String qlyOrgReportId; //质检报告管理id
|
|
@Column(name = "BROKEN_RICE_", length = 50)
|
@PropertyDef(label = "碎米总量")
|
private String brokenRice; //碎米总量
|
|
@Column(name = "SMALL_BROKEN_RICE_", length = 50)
|
@PropertyDef(label = "小碎米含量")
|
private String smallBrokenRice; //小碎米含量
|
|
@Column(name = "PROCESSING_ACCURACY_", length = 50)
|
@PropertyDef(label = "加工精度")
|
private String processingAccuracy; //加工精度
|
|
@Column(name = "COLOR_ODOR_", length = 50)
|
@PropertyDef(label = "色泽气味")
|
private String colorOdor; //色泽气味
|
|
@Column(name = "IMPURITY_CONTENT_", length = 50)
|
@PropertyDef(label = "杂质含量")
|
private String impuriryContent; //杂质含量
|
|
@Column(name = "TASTING_VALUE_", length = 50)
|
@PropertyDef(label = "品尝评分值")
|
private String tastingValue; //品尝评分值
|
|
@Column(name = "AMYLOSE_CONTENT_", length = 50)
|
@PropertyDef(label = "直链淀粉含量")
|
private String amyloseContent; //直链淀粉含量
|
|
@Column(name = "WATER_CONTENT_", length = 50)
|
@PropertyDef(label = "水分含量")
|
private String waterContent; //水分含量
|
|
@Column(name = "INCOMPLETE_CONTENT_", length = 50)
|
@PropertyDef(label = "不完善粒含量")
|
private String incompleteContent; //不完善粒含量
|
|
@Column(name = "INORGANIC_CONTENT_", length = 50)
|
@PropertyDef(label = "无机杂质含量")
|
private String inorganicContent; //无机杂质含量
|
|
@Column(name = "YELLOW_RICE_CONTENT_", length = 50)
|
@PropertyDef(label = "黄粒米含量")
|
private String yellowRiceContent; //黄粒米含量
|
|
@Column(name = "MIXING_RATE_", length = 50)
|
@PropertyDef(label = "互混率")
|
private String mixingRate; //互混率
|
|
@Column(name = "AFLATIOXIN_", length = 50)
|
@PropertyDef(label = "黄曲霉毒素")
|
private String aflatioxin; //黄曲霉毒素
|
|
@Column(name = "CADMIUM_", length = 50)
|
@PropertyDef(label = "镉")
|
private String cadmium; //镉
|
|
@Column(name = "INORGANIC_ARCENIC_", length = 50)
|
@PropertyDef(label = "无机砷")
|
private String inorganicArsenic; //无机砷
|
|
@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; //检验结论
|
}
|