package com.fzzy.igds.dzhwk.v1.dto; import com.bstek.dorado.annotation.PropertyDef; import lombok.Data; /** * 接口表-粮情 */ @Data public class ApiV1Data2001 { @PropertyDef(label = "检测单号") private String jcdj; @PropertyDef(label = "检测时间") private String jcsj; @PropertyDef(label = "仓库编码") private String hwdm; @PropertyDef(label = "仓房外温") private Double cfww; @PropertyDef(label = "仓房外湿") private Double cfws; @PropertyDef(label = "仓房内温") private Double cfnw; @PropertyDef(label = "仓房内湿") private Double cfns; @PropertyDef(label = "粮食最高温") private Double lszgw; @PropertyDef(label = "粮食最低温") private Double lszdw; @PropertyDef(label = "粮食平均温") private Double lspjw; @PropertyDef(label = "粮食温度值 集合") private String lswdzjh; @PropertyDef(label = "天气") private String weather; @PropertyDef(label = "检测人") private String jcr; @PropertyDef(label = "备注信息") private String remarks; }