czt
2024-04-21 86f687fe84d34d9291ed9e5c6ea45e04e11e3be2
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
package com.fzzy.api.entity;
 
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 czt
 */
@Data
@Entity
@Table(name = "API_1502")
@EqualsAndHashCode(callSuper=false)
public class Api1502 extends ApiParent implements Serializable {
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
 
    /**
     *
     */
    @Id
    @JSONField(serialize = false)
    @PropertyDef(label = "主键ID" , description = "yyyyMMdd + 4位顺序号")
    @Column(name = "ID_", length = 18)
    private String id;
 
    @PropertyDef(label = "单位代码" )
    @Column(name = "dwdm", length = 18)
    private String dwdm;
 
    @PropertyDef(label = "统一单位编码")
    @Column(name = "tydwbm", length = 20)
    private String tydwbm;
 
    @PropertyDef(label = "统一库区编码")
    @Column(name = "tykqbm", length = 22)
    private String tykqbm;
 
    @JSONField(format = "yyyyMMdd")
    @PropertyDef(label = "报表时间" )
    @Column(name = "bbsj")
    private Date bbsj;
 
    @PropertyDef(label = "一、经营活动产生的现金流量本月数(元)" )
    @Column(name = "jyhdxjllbys")
    private Double jyhdxjllbys;
 
    @PropertyDef(label = "一、经营活动产生的现金流量本年累计数(元)" )
    @Column(name = "jyhdxjllbnljs")
    private Double jyhdxjllbnljs;
 
    @PropertyDef(label = "销售商品、提供劳务收到的现金本月数(元)" )
    @Column(name = "xssplwxjbys")
    private Double xssplwxjbys;
 
    @PropertyDef(label = "销售商品、提供劳务收到的现金本年累计数(元)" )
    @Column(name = "xssplwxjbnljs")
    private Double xssplwxjbnljs;
 
    @PropertyDef(label = "收到的税费返还本月数(元)" )
    @Column(name = "sffhbys")
    private Double sffhbys;
 
    @PropertyDef(label = "收到的税费返还本年累计数(元)" )
    @Column(name = "sffhbnljs")
    private Double sffhbnljs;
 
    @PropertyDef(label = "收到其他与经营活动有关的现金本月数(元)" )
    @Column(name = "qtjyhdxjbys")
    private Double qtjyhdxjbys;
 
    @PropertyDef(label = "收到其他与经营活动有关的现金本年累计数(元)" )
    @Column(name = "qtjyhdxjbnljs")
    private Double qtjyhdxjbnljs;
 
    @PropertyDef(label = "经营活动现金流入小计本月数(元)" )
    @Column(name = "jyhdxjlrbys")
    private Double jyhdxjlrbys;
 
    @PropertyDef(label = "经营活动现金流入小计本年累计数(元)" )
    @Column(name = "jyhdxjlrbnljs")
    private Double jyhdxjlrbnljs;
 
    @PropertyDef(label = "购买商品、接受劳务支付的现金本月数(元)" )
    @Column(name = "gmsplwzfbys")
    private Double gmsplwzfbys;
 
    @PropertyDef(label = "购买商品、接受劳务支付的现金本年累计数(元)" )
    @Column(name = "gmsplwzfbnljs")
    private Double gmsplwzfbnljs;
 
    @PropertyDef(label = "支付给职工及为职工支付的现金本月数(元)" )
    @Column(name = "zfzgxjbys")
    private Double zfzgxjbys;
 
    @PropertyDef(label = "支付给职工及为职工支付的现金本年累计数(元)" )
    @Column(name = "zfzgxjbnljs")
    private Double zfzgxjbnljs;
 
    @PropertyDef(label = "支付的各项税费本月数(元)" )
    @Column(name = "zfxxsfbys")
    private Double zfxxsfbys;
 
    @PropertyDef(label = "支付的各项税费本年累计数(元)" )
    @Column(name = "zfxxsfbnljs")
    private Double zfxxsfbnljs;
 
    @PropertyDef(label = "支付其他与经营活动有关的现金本月数(元)" )
    @Column(name = "zfqtjyhdxjbys")
    private Double zfqtjyhdxjbys;
 
    @PropertyDef(label = "支付其他与经营活动有关的现金本年累计数(元)" )
    @Column(name = "zfqtjyhdxjbnljs")
    private Double zfqtjyhdxjbnljs;
 
    @PropertyDef(label = "经营活动现金流出小计本月数(元)" )
    @Column(name = "jyhdxjlcbys")
    private Double jyhdxjlcbys;
 
    @PropertyDef(label = "经营活动现金流出小计本年累计数(元)" )
    @Column(name = "jyhdxjlcbnljs")
    private Double jyhdxjlcbnljs;
 
    @PropertyDef(label = "经营活动产生的现金流量净额本月数(元)" )
    @Column(name = "jyhdxjlljebys")
    private Double jyhdxjlljebys;
 
    @PropertyDef(label = "经营活动产生的现金流量净额本年累计数(元)" )
    @Column(name = "jyhdxjlljebnljs")
    private Double jyhdxjlljebnljs;
 
    @PropertyDef(label = "二、投资活动产生的现金流量:本月数(元)" )
    @Column(name = "tzhdxjllbys")
    private Double tzhdxjllbys;
 
    @PropertyDef(label = "二、投资活动产生的现金流量:本年累计数(元)" )
    @Column(name = "tzhdxjllbnljs")
    private Double tzhdxjllbnljs;
 
    @PropertyDef(label = "收回投资收到的现金本月数(元)" )
    @Column(name = "shtzxjbys")
    private Double shtzxjbys;
 
    @PropertyDef(label = "收回投资收到的现金本年累计数(元)" )
    @Column(name = "shtzxjbnljs")
    private Double shtzxjbnljs;
 
    @PropertyDef(label = "取得投资收益收到的现金本月数(元)" )
    @Column(name = "qdtzsyxjbys")
    private Double qdtzsyxjbys;
 
    @PropertyDef(label = "取得投资收益收到的现金本年累计数(元)" )
    @Column(name = "qdtzsyxjbnljs")
    private Double qdtzsyxjbnljs;
 
    @PropertyDef(label = "处置固定资产、无形资产和其他长期资产收回的现金净额本月数(元)" )
    @Column(name = "czgdzcdxjjebys")
    private Double czgdzcdxjjebys;
 
    @PropertyDef(label = "处置固定资产、无形资产和其他长期资产收回的现金净额本年累计数(元)" )
    @Column(name = "czgdzcdxjjebnljs")
    private Double czgdzcdxjjebnljs;
 
    @PropertyDef(label = "处置子公司及其他营业单位收到的现金净额本月数(元)" )
    @Column(name = "czqtdwxjjebys")
    private Double czqtdwxjjebys;
 
    @PropertyDef(label = "处置子公司及其他营业单位收到的现金净额本年累计数(元)" )
    @Column(name = "czqtdwxjjebnljs")
    private Double czqtdwxjjebnljs;
 
    @PropertyDef(label = "收到其他与投资活动有关的现金本月数(元)" )
    @Column(name = "sdqttzxjbys")
    private Double sdqttzxjbys;
 
    @PropertyDef(label = "收到其他与投资活动有关的现金本年累计数(元)" )
    @Column(name = "sdqttzxjbnljs")
    private Double sdqttzxjbnljs;
 
    @PropertyDef(label = "投资活动现金流入小计本月数(元)" )
    @Column(name = "tzhdxjlrbys")
    private Double tzhdxjlrbys;
 
    @PropertyDef(label = "投资活动现金流入小计本年累计数(元)" )
    @Column(name = "tzhdxjlrbnljs")
    private Double tzhdxjlrbnljs;
 
    @PropertyDef(label = "购建固定资产、无形资产和其他长期资产支付的现金本月数(元)" )
    @Column(name = "gjgdzcdxjbys")
    private Double gjgdzcdxjbys;
 
    @PropertyDef(label = "购建固定资产、无形资产和其他长期资产支付的现金本年累计数(元)" )
    @Column(name = "gjgdzcdxjbnljs")
    private Double gjgdzcdxjbnljs;
 
    @PropertyDef(label = "投资支付的现金本月数(元)" )
    @Column(name = "tzzfxjbys")
    private Double tzzfxjbys;
 
    @PropertyDef(label = "投资支付的现金本年累计数(元)" )
    @Column(name = "tzzfxjbnljs")
    private Double tzzfxjbnljs;
 
    @PropertyDef(label = "取得子公司及其他营业单位支付的现金净额本月数(元)" )
    @Column(name = "qdzgsdzfxjjebys")
    private Double qdzgsdzfxjjebys;
 
    @PropertyDef(label = "取得子公司及其他营业单位支付的现金净额本年累计数(元)" )
    @Column(name = "qdzgsdzfxjjebnljs")
    private Double qdzgsdzfxjjebnljs;
 
    @PropertyDef(label = "支付其他与投资活动有关的现金本月数(元)" )
    @Column(name = "zfqttzxjbys")
    private Double zfqttzxjbys;
 
    @PropertyDef(label = "支付其他与投资活动有关的现金本年累计数(元)" )
    @Column(name = "zfqttzxjbnljs")
    private Double zfqttzxjbnljs;
 
    @PropertyDef(label = "投资活动现金流出小计本月数(元)" )
    @Column(name = "tzhdxjlcbys")
    private Double tzhdxjlcbys;
 
    @PropertyDef(label = "投资活动现金流出小计本年累计数(元)" )
    @Column(name = "tzhdxjlcbnljs")
    private Double tzhdxjlcbnljs;
 
    @PropertyDef(label = "投资活动产生的现金流量净额本月数(元)" )
    @Column(name = "tzhdcsxjlljebys")
    private Double tzhdcsxjlljebys;
 
    @PropertyDef(label = "投资活动产生的现金流量净额本年累计数(元)" )
    @Column(name = "tzhdcsxjlljebnljs")
    private Double tzhdcsxjlljebnljs;
 
    @PropertyDef(label = "三、筹资活动产生的现金流量:本月数(元)" )
    @Column(name = "cchdxjllbys")
    private Double cchdxjllbys;
 
    @PropertyDef(label = "三、筹资活动产生的现金流量:本年累计数(元)" )
    @Column(name = "cchdxjllbnljs")
    private Double cchdxjllbnljs;
 
    @PropertyDef(label = "吸收投资收到的现金本月数(元)" )
    @Column(name = "xstzxjbys")
    private Double xstzxjbys;
 
    @PropertyDef(label = "吸收投资收到的现金本年累计数(元)" )
    @Column(name = "xstzxjbnljs")
    private Double xstzxjbnljs;
 
    @PropertyDef(label = "取得借款收到的现金本月数(元)" )
    @Column(name = "qdjkxjbys")
    private Double qdjkxjbys;
 
    @PropertyDef(label = "取得借款收到的现金本年累计数(元)" )
    @Column(name = "qdjkxjbnljs")
    private Double qdjkxjbnljs;
 
    @PropertyDef(label = "收到其他与筹资活动有关的现金本月数(元)" )
    @Column(name = "sdqtczxjbys")
    private Double sdqtczxjbys;
 
    @PropertyDef(label = "收到其他与筹资活动有关的现金本年累计数(元)" )
    @Column(name = "sdqtczxjbnljs")
    private Double sdqtczxjbnljs;
 
    @PropertyDef(label = "筹资活动现金流入小计本月数(元)" )
    @Column(name = "czhdxjlrbys")
    private Double czhdxjlrbys;
 
    @PropertyDef(label = "筹资活动现金流入小计本年累计数(元)" )
    @Column(name = "czhdxjlrbnljs")
    private Double czhdxjlrbnljs;
 
    @PropertyDef(label = "偿还债务支付的现金本月数(元)" )
    @Column(name = "chzwzfxjbys")
    private Double chzwzfxjbys;
 
    @PropertyDef(label = "偿还债务支付的现金本年累计数(元)" )
    @Column(name = "chzwzfxjbnljs")
    private Double chzwzfxjbnljs;
 
    @PropertyDef(label = "分配股利、利润或偿付利息支付的现金本月数(元)" )
    @Column(name = "fpgldxjbys")
    private Double fpgldxjbys;
 
    @PropertyDef(label = "分配股利、利润或偿付利息支付的现金本年累计数(元)" )
    @Column(name = "fpgldxjbnljs")
    private Double fpgldxjbnljs;
 
    @PropertyDef(label = "支付其他与筹资活动有关的现金本月数(元)" )
    @Column(name = "zfqtdxjbys")
    private Double zfqtdxjbys;
 
    @PropertyDef(label = "支付其他与筹资活动有关的现金本年累计数(元)" )
    @Column(name = "zfqtdxjbnljs")
    private Double zfqtdxjbnljs;
 
    @PropertyDef(label = "筹资活动现金流出小计本月数(元)" )
    @Column(name = "czhdxjlcbys")
    private Double czhdxjlcbys;
 
    @PropertyDef(label = "筹资活动现金流出小计本年累计数(元)" )
    @Column(name = "czhdxjlcbnljs")
    private Double czhdxjlcbnljs;
 
    @PropertyDef(label = "筹资活动产生的现金流量净额本月数(元)" )
    @Column(name = "cchdxjlljebys")
    private Double cchdxjlljebys;
 
    @PropertyDef(label = "筹资活动产生的现金流量净额本年累计数(元)" )
    @Column(name = "cchdxjlljebnljs")
    private Double cchdxjlljebnljs;
 
    @PropertyDef(label = "四、汇率变动对现金及现金等价物的影响本月数(元)" )
    @Column(name = "hlbdxjyxbys")
    private Double hlbdxjyxbys;
 
    @PropertyDef(label = "四、汇率变动对现金及现金等价物的影响本年累计数(元)" )
    @Column(name = "hlbdxjyxbnljs")
    private Double hlbdxjyxbnljs;
 
    @PropertyDef(label = "五、现金及现金等价物净增加额本月数(元)" )
    @Column(name = "xjdjwjzebys")
    private Double xjdjwjzebys;
 
    @PropertyDef(label = "五、现金及现金等价物净增加额本年累计数(元)" )
    @Column(name = "xjdjwjzebnljs")
    private Double xjdjwjzebnljs;
 
    @PropertyDef(label = "加:期初现金及现金等价物余额本月数(元)" )
    @Column(name = "qcxjdjwyebys")
    private Double qcxjdjwyebys;
 
    @PropertyDef(label = "加:期初现金及现金等价物余额本年累计数(元)" )
    @Column(name = "qcxjdjwyebnljs")
    private Double qcxjdjwyebnljs;
 
    @PropertyDef(label = "六、期末现金及现金等价物余额本月数(元)" )
    @Column(name = "qmxjdjwyebys")
    private Double qmxjdjwyebys;
 
    @PropertyDef(label = "六、期末现金及现金等价物余额本年累计数(元)" )
    @Column(name = "qmxjdjwyebnljs")
    private Double qmxjdjwyebnljs;
 
    @PropertyDef(label = "操作标志" )
    @Column(name = "czbz", length = 1)
    private String czbz;
 
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "最后更新时间" )
    @Column(name = "zhgxsj")
    private Date zhgxsj;
 
}