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
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 ApiV1Data1003 {
 
    @PropertyDef(label = "仓房编码")
    private String cfdm;
 
    @PropertyDef(label = "仓房名称")
    private String cfmc;
 
    @PropertyDef(label = "仓房类型代码")
    private String cflxdm;
 
    @PropertyDef(label = "交付使用日期")
    private String jfsyrq;
 
    @PropertyDef(label = "地面结构")
    private String dmjg;
 
    @PropertyDef(label = "墙体结构")
    private String qtjg;
 
    @PropertyDef(label = "屋顶结构")
    private String fdjg;
 
    @PropertyDef(label = "屋架结构")
    private String fjjg;
 
    @PropertyDef(label = "设计储量", description = "单位:吨")
    private Double sjcr;
 
    @PropertyDef(label = "仓房高度", description = "单位:米")
    private Double cwg;
 
    @PropertyDef(label = "仓房长度", description = "单位:米")
    private Double cwc;
 
    @PropertyDef(label = "仓房宽度", description = "单位:米")
    private Double cwk;
 
    @PropertyDef(label = "保管员")
    private String bgr;
 
    @PropertyDef(label = "经度")
    private Double jd;
 
    @PropertyDef(label = "纬度")
    private Double wd;
 
    @PropertyDef(label = "更新时间")
    private String zhgxsj;
 
}