CZT
2023-10-19 da0dfffe0c57ed3ca0c66b24a68ccc64da0873c9
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
package com.fzzy.api.entity;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
 
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import java.io.Serializable;
import java.util.Date;
 
/**
 * 接口表-油罐信息
 */
@Data
@Entity
@Table(name = "API_1106")
public class Api1106  implements Serializable {
 
    /**
     * 
     */
    private static final long serialVersionUID = -9096483549679877168L;
 
    @JSONField(serialize = false)
    @PropertyDef(label = "业务id")
    @Column(name = "bizId", length = 40)
    private String bizId;
 
    @Id
    @PropertyDef(label = "油罐代码" )
    @Column(name = "ygdm", length = 25)
    private String ygdm;
 
    @PropertyDef(label = "油罐名称" )
    @Column(name = "ygmc", length = 256)
    private String ygmc;
 
    @PropertyDef(label = "库区代码" )
    @Column(name = "kqdm", length = 21)
    private String kqdm;
 
    @PropertyDef(label = "罐容" )
    @Column(name = "gr", precision = 20, scale = 6)
    private double gr;
 
    @PropertyDef(label = "建造时间" )
    @JSONField(format = "yyyy-MM-dd")
    @Column(name = "jzsj", length = 10, nullable = false)
    private Date jzsj;
 
    @PropertyDef(label = "油罐及附属设施是否完好" )
    @Column(name = "ygjfssssfwh", length = 1)
    private String ygjfssssfwh;
 
    @PropertyDef(label = "有无加热装置" )
    @Column(name = "ywjrzz", length = 1)
    private String ywjrzz;
 
    @PropertyDef(label = "油罐类型" )
    @Column(name = "yglx", length = 1)
    private String yglx;
 
    @PropertyDef(label = "罐内直径" )
    @Column(name = "gnzj", precision = 20, scale = 6)
    private double gnzj;
 
    @PropertyDef(label = "罐内高度" )
    @Column(name = "gngd", precision = 20, scale = 6)
    private double gngd;
 
    @PropertyDef(label = "检定方式" )
    @Column(name = "jdfs", length = 1)
    private String jdfs;
 
    @PropertyDef(label = "焊接方式" )
    @Column(name = "hjfs", length = 1)
    private String hjfs;
 
    @PropertyDef(label = "油罐状态" )
    @Column(name = "ygzt", length = 1)
    private String ygzt;
 
    @PropertyDef(label = "设计单位" )
    @Column(name = "sjdw", length = 256)
    private String sjdw;
 
    @PropertyDef(label = "建设单位" )
    @Column(name = "jsdw", length = 256)
    private String jsdw;
 
    @PropertyDef(label = "监理单位" )
    @Column(name = "jldw", length = 256)
    private String jldw;
 
    @PropertyDef(label = "操作标志" )
    @Column(name = "czbz", length = 1)
    private String czbz;
 
    @PropertyDef(label = "最后更新时间" )
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @Column(name = "zhgxsj", nullable = false)
    private Date zhgxsj;
 
}