czt
2024-06-05 2a1e25449eec1a3bb9cde0e3f25ede3134253bdc
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
package com.fzzy.push.nx2023.dto;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
 
import javax.persistence.Column;
import java.io.Serializable;
import java.util.Date;
 
/**
 * @Description
 * @Author CZT
 * @Date 2024/4/18 16:23
 */
@Data
public class Nx2023Api1405 implements Serializable {
 
    @PropertyDef(label = "统一单位编码")
    private String tydwbm;
 
    @PropertyDef(label = "项目代码" )
    private String xmdm;
 
    @PropertyDef(label = "项目名称" )
    private String xmmc;
 
    @PropertyDef(label = "行政区划代码" )
    private String xzqhdm;
 
    @PropertyDef(label = "年份" )
    private String nf;
 
    @PropertyDef(label = "项目类型" )
    private String xmlx;
 
    @PropertyDef(label = "建设内容及规模" )
    private String jsnr;
 
    @JSONField(format = "yyyy-MM-dd")
    @PropertyDef(label = "拟开工时间" )
    private Date nkgsj;
 
    @JSONField(format = "yyyy-MM-dd")
    @PropertyDef(label = "拟建成时间" )
    private Date njcsj;
 
    @PropertyDef(label = "建设状态" )
    private String jszt;
 
    @JSONField(format = "yyyy-MM-dd")
    @PropertyDef(label = "申报日期" )
    private Date sbrq;
 
    @PropertyDef(label = "审批文号" )
    private String spwh;
 
    @PropertyDef(label = "项目(法人)单位" )
    private String xmdw;
 
    @PropertyDef(label = "法人证照类型" )
    private String fddbrzzlx;
 
    @PropertyDef(label = "法人证照号码" )
    private String fddbrzzhm;
 
    @PropertyDef(label = "联系人" )
    private String lxr;
 
    @PropertyDef(label = "联系方式" )
    private String lxfs;
 
    @PropertyDef(label = "电子邮箱" )
    private String dzyx;
 
    @PropertyDef(label = "建设地点" )
    private String jsdd;
 
    @PropertyDef(label = "总投资" )
    private double ztz;
 
    @PropertyDef(label = "固定资产投资" )
    private double gdzctz;
 
    @PropertyDef(label = "中央财政资金" )
    private double zyczzj;
 
    @PropertyDef(label = "省财政资金" )
    private double sczzj;
 
    @JSONField(name = "sczzj01")
    @PropertyDef(label = "市财政资金" )
    private double sczzj2;
 
    @PropertyDef(label = "银行贷款" )
    private double yhdk;
 
    @PropertyDef(label = "股票债券" )
    private double gpzq;
 
    @PropertyDef(label = "其资金" )
    private double qtzj;
 
    @PropertyDef(label = "项目资料" )
    private String xmzl;
 
    @PropertyDef(label = "项目地址经度" )
    private double xmdzjd;
 
    @PropertyDef(label = "项目地址纬度" )
    private double zmdzwd;
 
    @PropertyDef(label = "操作标志" )
    private String czbz;
 
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "最后更新时间" )
    private Date zhgxsj;
 
    @PropertyDef(label = "库区代码")
    private String kqdm;
 
}