czt
2025-10-31 0f2d30660621ba143d5df99eab785015b0509520
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
package com.fzzy.push.sx2025.data;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
 
/**
 * @Description 陕西省平台2025版-安全管理信息
 * @Author CZT
 * @Date 2025/10/30 19:20
 */
@Data
public class SX2025Api1301 implements Serializable {
 
    @PropertyDef(label = "统一库区编码")
    private String tykqbm;
 
    @PropertyDef(label = "统一单位编码")
    private String tydwbm;
 
    @PropertyDef(label = "地点")
    private String dd;
 
    @PropertyDef(label = "风险点编码")
    private String fxdbm;
 
    @PropertyDef(label = "识别人")
    private String sbr;
 
    @PropertyDef(label = "环节/部位")
    private String hjbw;
 
    @PropertyDef(label = "风险信息")
    private String fxxx;
 
    @PropertyDef(label = "风险类型")
    private String fxlx;
 
    @PropertyDef(label = "风险分级")
    private String fxfj;
 
    @PropertyDef(label = "风险管控措施")
    private String fxglcs;
 
    @PropertyDef(label = "隐患信息")
    private String yhxx;
 
    @PropertyDef(label = "隐患排查信息")
    private String yhpcxx;
 
    @PropertyDef(label = "隐患整改信息")
    private String yhzgxx;
 
    @PropertyDef(label = "隐患整改验收信息")
    private String yhysxx;
 
    @PropertyDef(label = "事故基本信息")
    private String sgjbxx;
 
    @JSONField(format = "yyyy-MM-dd")
    @PropertyDef(label = "整改时限")
    private Date zgsx;
 
    @PropertyDef(label = "责任单位")
    private String zrdw;
 
    @PropertyDef(label = "责任人")
    private String zrr;
 
    @PropertyDef(label = "整改验收信息")
    private String zgysxx;
 
    @PropertyDef(label = "风险跟踪监管责任人")
    private String fxgzjgzrr;
 
    @PropertyDef(label = "操作标志")
    private String czbz;
 
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "最后更新时间")
    private Date zhgxsj;
 
}