CZT
2024-02-26 05aa35cd44519f34698a69a7151edb78e3cfae64
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
124
125
126
127
128
129
130
131
132
package com.fzzy.push.sh2023.dto;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import java.io.Serializable;
import java.util.Date;
 
/**
 * 接口表-项目信息数据表
 *
 * @author chen
 * @date 2022-09-02 16:03
 */
@Data
@EqualsAndHashCode(callSuper = false)
public class SH2023Api1405 implements Serializable {
 
    /**
     *
     */
    private static final long serialVersionUID = 1L;
 
    @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 frzzlx;
 
    @PropertyDef(label = "法人证照号码")
    private String frzzhm;
 
    @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 bjw;
 
}