package com.ld.igds.models;
|
|
import java.util.Date;
|
|
import javax.persistence.Column;
|
import javax.persistence.Entity;
|
import javax.persistence.Id;
|
import javax.persistence.Table;
|
|
import lombok.Data;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
|
/**
|
* 环流熏蒸-熏蒸作业记录
|
*
|
* @date 2018年3月9日 下午3:46:24
|
* @version 1.0
|
*/
|
@Data
|
@Entity
|
@Table(name = "D_DRUG_LOG")
|
public class DrugLog {
|
|
@Id
|
@Column(name = "ID_", length = 40)
|
@PropertyDef(label = "id")
|
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 = "START_")
|
@PropertyDef(label = "开始时间")
|
private Date start;
|
|
@Column(name = "END_")
|
@PropertyDef(label = "截至时间")
|
private Date end;
|
|
@Column(name = "PEST_BATCH_ID_", length = 50)
|
@PropertyDef(label = "虫害检测单号")
|
private String pestBatchId;
|
|
@Column(name = "NUM_")
|
@PropertyDef(label = "第几次熏蒸")
|
private Integer num = 0;
|
|
|
@Column(name = "MODE_", length = 50)
|
@PropertyDef(label = "熏蒸方式")
|
private String mode;
|
|
@Column(name = "RECIR_MODE_", length = 50)
|
@PropertyDef(label = "环流熏蒸方式")
|
private String recirMode;
|
|
@Column(name = "DRUG_NAME_", length = 50)
|
@PropertyDef(label = "药剂名称")
|
private String drugName;
|
|
@Column(name = "CONCENTRATION_", length = 50)
|
@PropertyDef(label = "药剂浓度",description = "%")
|
private Double concentration = 0.0;
|
|
@Column(name = "GRAIN_DOSE_")
|
@PropertyDef(label = "粮堆使用剂量",description = "g/m³")
|
private Double grainDose = 0.0;
|
|
@Column(name = "SPACE_DOSE_")
|
@PropertyDef(label = "空间使用剂量",description = "g/m³")
|
private Double SpaceDose =0.0;
|
|
@Column(name = "DOSE_")
|
@PropertyDef(label = "总使用剂量",description = "g/m³")
|
private Double dose = 0.0;
|
|
|
@Column(name = "VENTILATE_TIME_")
|
@PropertyDef(label = "散气时间")
|
private Date ventilateTime;
|
|
@Column(name = "VENTILATE_METHOD_",length = 100)
|
@PropertyDef(label = "散气方法")
|
private String ventilateMethod;
|
|
@Column(name = "AFTER_PH3_")
|
@PropertyDef(label = "散气后磷化氢浓度")
|
private Double afterPh3;
|
|
/**
|
* 0:良好
|
* 1:一般
|
* 2:不好
|
*/
|
@Column(name = "EVALUATE_",length = 10)
|
@PropertyDef(label = "熏蒸评价")
|
private String evaluate;
|
|
@Column(name = "CZSJFF_",length = 100)
|
@PropertyDef(label = "残渣收集方法")
|
private String czsjff;
|
|
@Column(name = "CZCLCS_",length = 100)
|
@PropertyDef(label = "残渣处理措施")
|
private String czclcs;
|
|
@Column(name = "USER_", length = 30)
|
@PropertyDef(label = "操作人")
|
private String user;
|
|
@PropertyDef(label = "更新人")
|
@Column(name = "UPDATE_USER_", length = 30)
|
private String updateUser;
|
|
@PropertyDef(label = "操作时间")
|
@Column(name = "UPDATE_TIME_")
|
private Date updateTime;
|
|
@Column(name = "REMARKS_", length = 500)
|
@PropertyDef(label = "备注说明")
|
private String remarks;
|
|
}
|