czt
昨天 9f6dacf7b39e5aeba37d8faf575c9e56d8cbe51a
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
66
67
68
69
70
71
72
73
74
75
76
package com.fzzy.push.nx2024.dto;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
 
/**
 * @Description 宁夏省平台2024版-油罐信息
 * @Author CZT
 * @Date 2024/7/25 14:45
 */
@Data
public class Nx2024Api2406 implements Serializable {
 
    @PropertyDef(label = "油罐代码" )
    private String ygdm;
 
    @PropertyDef(label = "统一油罐编码" )
    private String tyygbm;
 
    @PropertyDef(label = "油罐名称" )
    private String ygmc;
 
    @PropertyDef(label = "库区代码" )
    private String kqdm;
 
    @PropertyDef(label = "罐容" )
    private double gr;
 
    @PropertyDef(label = "建造时间" )
    @JSONField(format = "yyyy-MM-dd")
    private Date jzsj;
 
    @PropertyDef(label = "油罐及附属设施是否完好" )
    private String ygjfssssfwh;
 
    @PropertyDef(label = "有无加热装置" )
    private String ywjrzz;
 
    @PropertyDef(label = "油罐类型" )
    private String yglx;
 
    @PropertyDef(label = "罐内直径" )
    private double gnzj;
 
    @PropertyDef(label = "罐内高度" )
    private double gngd;
 
    @PropertyDef(label = "检定方式" )
    private String jdfs;
 
    @PropertyDef(label = "焊接方式" )
    private String hjfs;
 
    @PropertyDef(label = "油罐状态" )
    private String ygzt;
 
    @PropertyDef(label = "设计单位" )
    private String sjdw;
 
    @PropertyDef(label = "建设单位" )
    private String jsdw;
 
    @PropertyDef(label = "监理单位" )
    private String jldw;
 
    @PropertyDef(label = "操作标志" )
    private String czbz;
 
    @PropertyDef(label = "最后更新时间" )
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    private Date zhgxsj;
 
}