czt
2025-06-11 283da741b2429cf5a53786e5ee1b5528b757fdf6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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;
 
}