czt
2025-06-05 00acb9d6cb8d3455e9a7c2b51722fafeb820a92c
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
55
56
57
58
59
60
61
62
63
64
65
package com.fzzy.igds.dzhwk.v1.dto;
 
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
 
/**
 * @Description 货位信息
 * @Author CZT
 * @Date 2025/02/24 09:35
 */
@Data
public class ApiV1Data1005 {
 
    @PropertyDef(label = "货位代码" )
    private String hwdm;
 
    @PropertyDef(label = "货位名称" )
    private String hwmc;
 
    @PropertyDef(label = "廒间代码" )
    private String ajdm;
 
    @PropertyDef(label = "货位启用日期" )
    private String hwqyrq;
 
    @PropertyDef(label = "货位容量" )
    private Double hwrl;
 
    @PropertyDef(label = "保管单位" )
    private String bgdw;
 
    @PropertyDef(label = "保管员" )
    private String bgy;
 
    @PropertyDef(label = "粮食品种代码")
    private String lspzdm;
 
    @PropertyDef(label = "粮食性质代码")
    private String lsxzdm;
 
    @PropertyDef(label = "粮食等级代码")
    private String lsdjdm;
 
    @PropertyDef(label = "收获年度")
    private String shnd;
 
    @PropertyDef(label = "国别")
    private String gb;
 
    @PropertyDef(label = "产地")
    private String cd;
 
    @PropertyDef(label = "货位(油罐)状态")
    private String hwzt;
 
    @PropertyDef(label = "入仓时间")
    private String rcsj;
 
    @PropertyDef(label = "实际数量(公斤)")
    private double sjsl;
 
    @PropertyDef(label = "最后更新时间" )
    private String zhgxsj;
 
}