package com.fzzy.async.fzzy35.entity;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
import javax.persistence.*;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 质量巡检--粮食在仓检测
|
*
|
* @author chen
|
*
|
*/
|
@Data
|
@Entity
|
@Table(name = "D_M_QUALITY")
|
public class Fz35Quality implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@Id
|
@Column(name = "ID_", length = 40)
|
@PropertyDef(label = "主键ID", description = "ZJ+检验类别+年月日时分秒")
|
private String id;
|
|
@Column(name = "COMPANY_ID_", length = 10)
|
@PropertyDef(label = "组织编码")
|
private String companyId;
|
|
@Column(name = "DEPT_ID_", length = 40)
|
@PropertyDef(label = "库区编码")
|
private String deptId;
|
|
@Column(name = "DEPOT_ID_", length = 50)
|
@PropertyDef(label = "仓库编码")
|
private String depotId;
|
|
@Column(name = "FOOD_VARIETY_", length = 10)
|
@PropertyDef(label = "粮食品种")
|
private String foodVariety;
|
|
@Column(name = "FOOD_LEVEL_", length = 10)
|
@PropertyDef(label = "粮食等级")
|
private String foodLevel;
|
|
@Column(name = "FOOD_TYPE_", length = 10)
|
@PropertyDef(label = "粮食性质")
|
private String foodType;
|
|
@Column(name = "FOOD_LOCATION_", length = 30)
|
@PropertyDef(label = "粮食产地")
|
private String foodLocation;
|
|
@Column(name = "TYPE_", length = 10)
|
@PropertyDef(label = "检验类别", description = "如入库验收、储藏检验、日常巡检等")
|
private String type;
|
|
@Column(name = "STANDARD_", length = 10)
|
@PropertyDef(label = "检验依据", description = "01-国标,02-其他")
|
private String standard;
|
|
@Column(name = "USER_", length = 50)
|
@PropertyDef(label = "检验单位或检验人")
|
private String user;
|
|
@Column(name = "TIME_")
|
@PropertyDef(label = "检验时间")
|
private Date time;
|
|
@Column(name = "RESULT_", length = 50)
|
@PropertyDef(label = "检验结论")
|
private String result;
|
|
@Column(name = "CHECK_AREA__", length = 50)
|
@PropertyDef(label = "扦样区域")
|
private String checkArea;
|
|
@Column(name = "CHECK_USER_", length = 50)
|
@PropertyDef(label = "扦样人")
|
private String checkUser;
|
|
@Column(name = "CHECK_TIME_")
|
@PropertyDef(label = "扦样时间")
|
private Date checkTime;
|
|
@Column(name = "CHECK_NUM_")
|
@PropertyDef(label = "样品数量")
|
private Double checkNum;
|
|
@Column(name = "CHECK_REPRESENT_", length = 50)
|
@PropertyDef(label = "样品代表")
|
private String checkRepresent;
|
|
@Column(name = "CHECK_LEVEL_", length = 20)
|
@PropertyDef(label = "样品等级")
|
private String checkLevel;
|
|
@Column(name = "NORMAL_YEAR_", length = 10)
|
@PropertyDef(label = "是否正常存储年限")
|
private String normalYear;
|
|
@Column(name = "REMARK_", length = 500)
|
@PropertyDef(label = "备注", description = "备注信息")
|
private String remark;
|
}
|