|  |  |  | 
|---|
|  |  |  | @Entity | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | @Table(name = "D_DRUG_LOG_DTL") | 
|---|
|  |  |  | public class DrugLogDtl implements Serializable { | 
|---|
|  |  |  | public class DrugLogDtl implements Serializable { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Id | 
|---|
|  |  |  | @Column(name = "DTL_ID_", length = 40) | 
|---|
|  |  |  | @PropertyDef(label = "dtlId") | 
|---|
|  |  |  | private String dtlId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Column(name = "ID_", length = 40) | 
|---|
|  |  |  | @PropertyDef(label = "id") | 
|---|
|  |  |  | @PropertyDef(label = "id", description = "熏蒸编号+库区代码+填报日期") | 
|---|
|  |  |  | private String id; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Column(name = "DRUG_LOG_ID_", length = 4) | 
|---|
|  |  |  | 
|---|
|  |  |  | @PropertyDef(label = "库区代码") | 
|---|
|  |  |  | private String deptId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Column(name = "COMPANY_ID_", length = 10) | 
|---|
|  |  |  | @PropertyDef(label = "组织编码") | 
|---|
|  |  |  | private String companyId; | 
|---|
|  |  |  | @Column(name = "tbrq") | 
|---|
|  |  |  | @PropertyDef(label = "填报日期") | 
|---|
|  |  |  | @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd", timezone = "GMT+8") | 
|---|
|  |  |  | private Date tbrq; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Column(name = "DEPOT_ID_", length = 50) | 
|---|
|  |  |  | @PropertyDef(label = "仓房/油罐代码") | 
|---|
|  |  |  | 
|---|
|  |  |  | @PropertyDef(label = "粮温") | 
|---|
|  |  |  | private Double lw; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Column(name = "cw", precision = 20, scale = 3) | 
|---|
|  |  |  | @PropertyDef(label = "仓温") | 
|---|
|  |  |  | private Double cw; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Column(name = "cnsd", precision = 20, scale = 3) | 
|---|
|  |  |  | @PropertyDef(label = "仓内湿度") | 
|---|
|  |  |  | private Double cnsd; | 
|---|