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
372
package com.gx.obe.struct.beans;
import java.math.BigDecimal;
/**
* @Description: 财务报表
* @author chenxw
*/
public class Finance {
/**
* 主键
*/
private String id;
/**
* 项目ID
*/
private String tenderId;
/**
* 模型数据ID
*/
private String modelDataId;
/**
* 年度
*/
private String annual;
/**
* 注册资本
*/
// private BigDecimal registeredCapital;
/**
* 总资产(万元)
*/
private BigDecimal total;
/**
* 利润总额(万元)
*/
private BigDecimal profitLossProfit;
/**
* 营业收入(万元)
*/
private BigDecimal operatingIncome;
/**
* 资产负债率(%)
*/
private BigDecimal liabilitiesRate;
/**
* 流动资产(万元)
*/
private BigDecimal currentAssets;
/**
* 流动负债(万元)
*/
private BigDecimal currentLiabilities;
/**
* 流动比率(%)
*/
private BigDecimal currentRate;
/**
* 净利率(%)
*/
private BigDecimal profitRatio;
/**
* 主营业务利润率(%)
*/
private BigDecimal operatingMargin;
/**
* 净利润(万元)
*/
private BigDecimal retainedProfits;
/**
* 企业名称
*/
private String companyName;
/**
* 净资产(万元)
*/
private BigDecimal netWorth;
/**
* 固定资产(万元)
*/
// private BigDecimal fixedAssets;
/**
* 现金流量净额(万元)
*/
// private BigDecimal netCashFlow;
/**
* 净资产收益率(%)
*/
// private BigDecimal returnOnEquity;
/**
* 总资产报酬率(%)
*/
// private BigDecimal returnOnTotalAsset;
/**
* 速动比率(%)
*/
private BigDecimal quickRatio;
/**
* 负债合计(万元)
*/
private BigDecimal totalliabilities;
/**
* 成本费用总额(万元)
*/
private BigDecimal totalcost;
/**
* 速动资产(万元)
*/
private BigDecimal quickassets;
/**
* 主营业务利润(万元)
*/
private BigDecimal mainIncomeProfits;
/**
* 主营业务收入(万元)
*/
private BigDecimal primeOperatingRevenue;
/**
* 资产负债表
*/
// private BalanceSheet balanceSheet;
/**
* 损益表
*/
// private ProfitlossSheet profitlossSheet;
/**
* 现金流量表
*/
// private CashSheet cashSheet;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getTenderId() {
return tenderId;
}
public void setTenderId(String tenderId) {
this.tenderId = tenderId;
}
public String getModelDataId() {
return modelDataId;
}
public void setModelDataId(String modelDataId) {
this.modelDataId = modelDataId;
}
public String getAnnual() {
return annual;
}
public void setAnnual(String annual) {
this.annual = annual;
}
public BigDecimal getTotal() {
return total;
}
public void setTotal(BigDecimal total) {
this.total = total;
}
public BigDecimal getOperatingIncome() {
return operatingIncome;
}
public void setOperatingIncome(BigDecimal operatingIncome) {
this.operatingIncome = operatingIncome;
}
public BigDecimal getLiabilitiesRate() {
return liabilitiesRate;
}
public void setLiabilitiesRate(BigDecimal liabilitiesRate) {
this.liabilitiesRate = liabilitiesRate;
}
public BigDecimal getCurrentAssets() {
return currentAssets;
}
public void setCurrentAssets(BigDecimal currentAssets) {
this.currentAssets = currentAssets;
}
public BigDecimal getCurrentLiabilities() {
return currentLiabilities;
}
public void setCurrentLiabilities(BigDecimal currentLiabilities) {
this.currentLiabilities = currentLiabilities;
}
public BigDecimal getCurrentRate() {
return currentRate;
}
public void setCurrentRate(BigDecimal currentRate) {
this.currentRate = currentRate;
}
public BigDecimal getOperatingMargin() {
return operatingMargin;
}
public void setOperatingMargin(BigDecimal operatingMargin) {
this.operatingMargin = operatingMargin;
}
public BigDecimal getRetainedProfits() {
return retainedProfits;
}
public void setRetainedProfits(BigDecimal retainedProfits) {
this.retainedProfits = retainedProfits;
}
public String getCompanyName() {
return companyName;
}
public void setCompanyName(String companyName) {
this.companyName = companyName;
}
public BigDecimal getNetWorth() {
return netWorth;
}
public void setNetWorth(BigDecimal netWorth) {
this.netWorth = netWorth;
}
// public BigDecimal getFixedAssets() {
// return fixedAssets;
// }
//
// public void setFixedAssets(BigDecimal fixedAssets) {
// this.fixedAssets = fixedAssets;
// }
//
// public BigDecimal getNetCashFlow() {
// return netCashFlow;
// }
//
// public void setNetCashFlow(BigDecimal netCashFlow) {
// this.netCashFlow = netCashFlow;
// }
//
// public BigDecimal getReturnOnEquity() {
// return returnOnEquity;
// }
//
// public void setReturnOnEquity(BigDecimal returnOnEquity) {
// this.returnOnEquity = returnOnEquity;
// }
//
// public BigDecimal getReturnOnTotalAsset() {
// return returnOnTotalAsset;
// }
//
// public void setReturnOnTotalAsset(BigDecimal returnOnTotalAsset) {
// this.returnOnTotalAsset = returnOnTotalAsset;
// }
public BigDecimal getQuickRatio() {
return quickRatio;
}
public void setQuickRatio(BigDecimal quickRatio) {
this.quickRatio = quickRatio;
}
public BigDecimal getTotalliabilities() {
return totalliabilities;
}
public void setTotalliabilities(BigDecimal totalliabilities) {
this.totalliabilities = totalliabilities;
}
// public BalanceSheet getBalanceSheet() {
// return balanceSheet;
// }
//
// public void setBalanceSheet(BalanceSheet balanceSheet) {
// this.balanceSheet = balanceSheet;
// }
//
// public ProfitlossSheet getProfitlossSheet() {
// return profitlossSheet;
// }
//
// public void setProfitlossSheet(ProfitlossSheet profitlossSheet) {
// this.profitlossSheet = profitlossSheet;
// }
//
// public CashSheet getCashSheet() {
// return cashSheet;
// }
//
// public void setCashSheet(CashSheet cashSheet) {
// this.cashSheet = cashSheet;
// }
// public BigDecimal getRegisteredCapital() {
// return registeredCapital;
// }
//
// public void setRegisteredCapital(BigDecimal registeredCapital) {
// this.registeredCapital = registeredCapital;
// }
public BigDecimal getTotalcost() {
return totalcost;
}
public void setTotalcost(BigDecimal totalcost) {
this.totalcost = totalcost;
}
public BigDecimal getQuickassets() {
return quickassets;
}
public void setQuickassets(BigDecimal quickassets) {
this.quickassets = quickassets;
}
public BigDecimal getMainIncomeProfits() {
return mainIncomeProfits;
}
public void setMainIncomeProfits(BigDecimal mainIncomeProfits) {
this.mainIncomeProfits = mainIncomeProfits;
}
public BigDecimal getPrimeOperatingRevenue() {
return primeOperatingRevenue;
}
public void setPrimeOperatingRevenue(BigDecimal primeOperatingRevenue) {
this.primeOperatingRevenue = primeOperatingRevenue;
}
public BigDecimal getProfitLossProfit() {
return profitLossProfit;
}
public void setProfitLossProfit(BigDecimal profitLossProfit) {
this.profitLossProfit = profitLossProfit;
}
public BigDecimal getProfitRatio() {
return profitRatio;
}
public void setProfitRatio(BigDecimal profitRatio) {
this.profitRatio = profitRatio;
}
}