|
|
@@ -0,0 +1,555 @@
|
|
|
1
|
+package com.ruoyi.web.modules.industryservice.research.domain.vo;
|
|
|
2
|
+
|
|
|
3
|
+import java.math.BigDecimal;
|
|
|
4
|
+
|
|
|
5
|
+/**
|
|
|
6
|
+ * 科研开放接口 — 合作社发展填报记录(脱敏法人姓名;不含部门 ID / 备注)。
|
|
|
7
|
+ */
|
|
|
8
|
+public class ResearchCooperativeDevelopmentVo
|
|
|
9
|
+{
|
|
|
10
|
+ /** 合作社发展记录 ID */
|
|
|
11
|
+ private Long cooperativeId;
|
|
|
12
|
+
|
|
|
13
|
+ /** 所属年份 */
|
|
|
14
|
+ private Integer statYear;
|
|
|
15
|
+
|
|
|
16
|
+ /** 所属月份(1~12) */
|
|
|
17
|
+ private Integer statMonth;
|
|
|
18
|
+
|
|
|
19
|
+ /** 所属乡镇名称 */
|
|
|
20
|
+ private String townName;
|
|
|
21
|
+
|
|
|
22
|
+ /** 所属村名称 */
|
|
|
23
|
+ private String villageName;
|
|
|
24
|
+
|
|
|
25
|
+ /** 合作社名称 */
|
|
|
26
|
+ private String cooperativeName;
|
|
|
27
|
+
|
|
|
28
|
+ /** 法定代表人(脱敏) */
|
|
|
29
|
+ private String legalRepresentative;
|
|
|
30
|
+
|
|
|
31
|
+ /** 成立时间 */
|
|
|
32
|
+ private String establishDate;
|
|
|
33
|
+
|
|
|
34
|
+ /** 注册资本(万元) */
|
|
|
35
|
+ private BigDecimal registeredCapital;
|
|
|
36
|
+
|
|
|
37
|
+ /** 截止年底总资产(万元) */
|
|
|
38
|
+ private BigDecimal yearEndTotalAssets;
|
|
|
39
|
+
|
|
|
40
|
+ /** 入社户数 */
|
|
|
41
|
+ private Integer memberHouseholdCount;
|
|
|
42
|
+
|
|
|
43
|
+ /** 入社人数 */
|
|
|
44
|
+ private Integer memberPopulationCount;
|
|
|
45
|
+
|
|
|
46
|
+ /** 防返贫监测人数 */
|
|
|
47
|
+ private Integer povertyMonitorCount;
|
|
|
48
|
+
|
|
|
49
|
+ /** 牛入股数量 */
|
|
|
50
|
+ private Integer cattleShareCount;
|
|
|
51
|
+
|
|
|
52
|
+ /** 羊入股数量 */
|
|
|
53
|
+ private Integer sheepShareCount;
|
|
|
54
|
+
|
|
|
55
|
+ /** 牲畜入股小计 */
|
|
|
56
|
+ private Integer livestockShareTotal;
|
|
|
57
|
+
|
|
|
58
|
+ /** 草场入股面积(万亩) */
|
|
|
59
|
+ private BigDecimal grasslandShareArea;
|
|
|
60
|
+
|
|
|
61
|
+ /** 劳动力入股(人) */
|
|
|
62
|
+ private Integer laborShareCount;
|
|
|
63
|
+
|
|
|
64
|
+ /** 现金入股(万元) */
|
|
|
65
|
+ private BigDecimal cashShareAmount;
|
|
|
66
|
+
|
|
|
67
|
+ /** 其他入股(万元) */
|
|
|
68
|
+ private BigDecimal otherShareAmount;
|
|
|
69
|
+
|
|
|
70
|
+ /** 总收入(万元) */
|
|
|
71
|
+ private BigDecimal totalIncome;
|
|
|
72
|
+
|
|
|
73
|
+ /** 纯收入(万元) */
|
|
|
74
|
+ private BigDecimal netIncome;
|
|
|
75
|
+
|
|
|
76
|
+ /** 现金分红(万元) */
|
|
|
77
|
+ private BigDecimal cashDividend;
|
|
|
78
|
+
|
|
|
79
|
+ /** 实物分红折算(万元) */
|
|
|
80
|
+ private BigDecimal inKindDividend;
|
|
|
81
|
+
|
|
|
82
|
+ /** 周转金(万元) */
|
|
|
83
|
+ private BigDecimal revolvingFund;
|
|
|
84
|
+
|
|
|
85
|
+ /** 亏损(万元) */
|
|
|
86
|
+ private BigDecimal lossAmount;
|
|
|
87
|
+
|
|
|
88
|
+ /** 吸纳大学生(人) */
|
|
|
89
|
+ private Integer collegeGraduateCount;
|
|
|
90
|
+
|
|
|
91
|
+ /** 大学生工资性收入(万元) */
|
|
|
92
|
+ private BigDecimal collegeGraduateWage;
|
|
|
93
|
+
|
|
|
94
|
+ /** 农牧民转移就业(人) */
|
|
|
95
|
+ private Integer farmerTransferEmploymentCount;
|
|
|
96
|
+
|
|
|
97
|
+ /** 农牧民工资性收入(万元) */
|
|
|
98
|
+ private BigDecimal farmerTransferWage;
|
|
|
99
|
+
|
|
|
100
|
+ /** 牛存栏(头) */
|
|
|
101
|
+ private Integer cattleInventoryCount;
|
|
|
102
|
+
|
|
|
103
|
+ /** 牛出栏(头) */
|
|
|
104
|
+ private Integer cattleOutboundCount;
|
|
|
105
|
+
|
|
|
106
|
+ /** 羊存栏(头) */
|
|
|
107
|
+ private Integer sheepInventoryCount;
|
|
|
108
|
+
|
|
|
109
|
+ /** 羊出栏(头) */
|
|
|
110
|
+ private Integer sheepOutboundCount;
|
|
|
111
|
+
|
|
|
112
|
+ /** 注册商标产品数量 */
|
|
|
113
|
+ private Integer trademarkProductCount;
|
|
|
114
|
+
|
|
|
115
|
+ /** 质量认证产品数量 */
|
|
|
116
|
+ private Integer qualityCertProductCount;
|
|
|
117
|
+
|
|
|
118
|
+ /** 培训-管理能力 */
|
|
|
119
|
+ private Integer trainingManageCount;
|
|
|
120
|
+
|
|
|
121
|
+ /** 培训-专业技能 */
|
|
|
122
|
+ private Integer trainingSkillCount;
|
|
|
123
|
+
|
|
|
124
|
+ /** 培训-其他 */
|
|
|
125
|
+ private Integer trainingOtherCount;
|
|
|
126
|
+
|
|
|
127
|
+ /** 主要经营范围(逗号分隔) */
|
|
|
128
|
+ private String businessScope;
|
|
|
129
|
+
|
|
|
130
|
+ /** 经营模式分类 */
|
|
|
131
|
+ private String businessModel;
|
|
|
132
|
+
|
|
|
133
|
+ /** 运营情况 */
|
|
|
134
|
+ private String operationStatus;
|
|
|
135
|
+
|
|
|
136
|
+ public Long getCooperativeId()
|
|
|
137
|
+ {
|
|
|
138
|
+ return cooperativeId;
|
|
|
139
|
+ }
|
|
|
140
|
+
|
|
|
141
|
+ public void setCooperativeId(Long cooperativeId)
|
|
|
142
|
+ {
|
|
|
143
|
+ this.cooperativeId = cooperativeId;
|
|
|
144
|
+ }
|
|
|
145
|
+
|
|
|
146
|
+ public Integer getStatYear()
|
|
|
147
|
+ {
|
|
|
148
|
+ return statYear;
|
|
|
149
|
+ }
|
|
|
150
|
+
|
|
|
151
|
+ public void setStatYear(Integer statYear)
|
|
|
152
|
+ {
|
|
|
153
|
+ this.statYear = statYear;
|
|
|
154
|
+ }
|
|
|
155
|
+
|
|
|
156
|
+ public Integer getStatMonth()
|
|
|
157
|
+ {
|
|
|
158
|
+ return statMonth;
|
|
|
159
|
+ }
|
|
|
160
|
+
|
|
|
161
|
+ public void setStatMonth(Integer statMonth)
|
|
|
162
|
+ {
|
|
|
163
|
+ this.statMonth = statMonth;
|
|
|
164
|
+ }
|
|
|
165
|
+
|
|
|
166
|
+ public String getTownName()
|
|
|
167
|
+ {
|
|
|
168
|
+ return townName;
|
|
|
169
|
+ }
|
|
|
170
|
+
|
|
|
171
|
+ public void setTownName(String townName)
|
|
|
172
|
+ {
|
|
|
173
|
+ this.townName = townName;
|
|
|
174
|
+ }
|
|
|
175
|
+
|
|
|
176
|
+ public String getVillageName()
|
|
|
177
|
+ {
|
|
|
178
|
+ return villageName;
|
|
|
179
|
+ }
|
|
|
180
|
+
|
|
|
181
|
+ public void setVillageName(String villageName)
|
|
|
182
|
+ {
|
|
|
183
|
+ this.villageName = villageName;
|
|
|
184
|
+ }
|
|
|
185
|
+
|
|
|
186
|
+ public String getCooperativeName()
|
|
|
187
|
+ {
|
|
|
188
|
+ return cooperativeName;
|
|
|
189
|
+ }
|
|
|
190
|
+
|
|
|
191
|
+ public void setCooperativeName(String cooperativeName)
|
|
|
192
|
+ {
|
|
|
193
|
+ this.cooperativeName = cooperativeName;
|
|
|
194
|
+ }
|
|
|
195
|
+
|
|
|
196
|
+ public String getLegalRepresentative()
|
|
|
197
|
+ {
|
|
|
198
|
+ return legalRepresentative;
|
|
|
199
|
+ }
|
|
|
200
|
+
|
|
|
201
|
+ public void setLegalRepresentative(String legalRepresentative)
|
|
|
202
|
+ {
|
|
|
203
|
+ this.legalRepresentative = legalRepresentative;
|
|
|
204
|
+ }
|
|
|
205
|
+
|
|
|
206
|
+ public String getEstablishDate()
|
|
|
207
|
+ {
|
|
|
208
|
+ return establishDate;
|
|
|
209
|
+ }
|
|
|
210
|
+
|
|
|
211
|
+ public void setEstablishDate(String establishDate)
|
|
|
212
|
+ {
|
|
|
213
|
+ this.establishDate = establishDate;
|
|
|
214
|
+ }
|
|
|
215
|
+
|
|
|
216
|
+ public BigDecimal getRegisteredCapital()
|
|
|
217
|
+ {
|
|
|
218
|
+ return registeredCapital;
|
|
|
219
|
+ }
|
|
|
220
|
+
|
|
|
221
|
+ public void setRegisteredCapital(BigDecimal registeredCapital)
|
|
|
222
|
+ {
|
|
|
223
|
+ this.registeredCapital = registeredCapital;
|
|
|
224
|
+ }
|
|
|
225
|
+
|
|
|
226
|
+ public BigDecimal getYearEndTotalAssets()
|
|
|
227
|
+ {
|
|
|
228
|
+ return yearEndTotalAssets;
|
|
|
229
|
+ }
|
|
|
230
|
+
|
|
|
231
|
+ public void setYearEndTotalAssets(BigDecimal yearEndTotalAssets)
|
|
|
232
|
+ {
|
|
|
233
|
+ this.yearEndTotalAssets = yearEndTotalAssets;
|
|
|
234
|
+ }
|
|
|
235
|
+
|
|
|
236
|
+ public Integer getMemberHouseholdCount()
|
|
|
237
|
+ {
|
|
|
238
|
+ return memberHouseholdCount;
|
|
|
239
|
+ }
|
|
|
240
|
+
|
|
|
241
|
+ public void setMemberHouseholdCount(Integer memberHouseholdCount)
|
|
|
242
|
+ {
|
|
|
243
|
+ this.memberHouseholdCount = memberHouseholdCount;
|
|
|
244
|
+ }
|
|
|
245
|
+
|
|
|
246
|
+ public Integer getMemberPopulationCount()
|
|
|
247
|
+ {
|
|
|
248
|
+ return memberPopulationCount;
|
|
|
249
|
+ }
|
|
|
250
|
+
|
|
|
251
|
+ public void setMemberPopulationCount(Integer memberPopulationCount)
|
|
|
252
|
+ {
|
|
|
253
|
+ this.memberPopulationCount = memberPopulationCount;
|
|
|
254
|
+ }
|
|
|
255
|
+
|
|
|
256
|
+ public Integer getPovertyMonitorCount()
|
|
|
257
|
+ {
|
|
|
258
|
+ return povertyMonitorCount;
|
|
|
259
|
+ }
|
|
|
260
|
+
|
|
|
261
|
+ public void setPovertyMonitorCount(Integer povertyMonitorCount)
|
|
|
262
|
+ {
|
|
|
263
|
+ this.povertyMonitorCount = povertyMonitorCount;
|
|
|
264
|
+ }
|
|
|
265
|
+
|
|
|
266
|
+ public Integer getCattleShareCount()
|
|
|
267
|
+ {
|
|
|
268
|
+ return cattleShareCount;
|
|
|
269
|
+ }
|
|
|
270
|
+
|
|
|
271
|
+ public void setCattleShareCount(Integer cattleShareCount)
|
|
|
272
|
+ {
|
|
|
273
|
+ this.cattleShareCount = cattleShareCount;
|
|
|
274
|
+ }
|
|
|
275
|
+
|
|
|
276
|
+ public Integer getSheepShareCount()
|
|
|
277
|
+ {
|
|
|
278
|
+ return sheepShareCount;
|
|
|
279
|
+ }
|
|
|
280
|
+
|
|
|
281
|
+ public void setSheepShareCount(Integer sheepShareCount)
|
|
|
282
|
+ {
|
|
|
283
|
+ this.sheepShareCount = sheepShareCount;
|
|
|
284
|
+ }
|
|
|
285
|
+
|
|
|
286
|
+ public Integer getLivestockShareTotal()
|
|
|
287
|
+ {
|
|
|
288
|
+ return livestockShareTotal;
|
|
|
289
|
+ }
|
|
|
290
|
+
|
|
|
291
|
+ public void setLivestockShareTotal(Integer livestockShareTotal)
|
|
|
292
|
+ {
|
|
|
293
|
+ this.livestockShareTotal = livestockShareTotal;
|
|
|
294
|
+ }
|
|
|
295
|
+
|
|
|
296
|
+ public BigDecimal getGrasslandShareArea()
|
|
|
297
|
+ {
|
|
|
298
|
+ return grasslandShareArea;
|
|
|
299
|
+ }
|
|
|
300
|
+
|
|
|
301
|
+ public void setGrasslandShareArea(BigDecimal grasslandShareArea)
|
|
|
302
|
+ {
|
|
|
303
|
+ this.grasslandShareArea = grasslandShareArea;
|
|
|
304
|
+ }
|
|
|
305
|
+
|
|
|
306
|
+ public Integer getLaborShareCount()
|
|
|
307
|
+ {
|
|
|
308
|
+ return laborShareCount;
|
|
|
309
|
+ }
|
|
|
310
|
+
|
|
|
311
|
+ public void setLaborShareCount(Integer laborShareCount)
|
|
|
312
|
+ {
|
|
|
313
|
+ this.laborShareCount = laborShareCount;
|
|
|
314
|
+ }
|
|
|
315
|
+
|
|
|
316
|
+ public BigDecimal getCashShareAmount()
|
|
|
317
|
+ {
|
|
|
318
|
+ return cashShareAmount;
|
|
|
319
|
+ }
|
|
|
320
|
+
|
|
|
321
|
+ public void setCashShareAmount(BigDecimal cashShareAmount)
|
|
|
322
|
+ {
|
|
|
323
|
+ this.cashShareAmount = cashShareAmount;
|
|
|
324
|
+ }
|
|
|
325
|
+
|
|
|
326
|
+ public BigDecimal getOtherShareAmount()
|
|
|
327
|
+ {
|
|
|
328
|
+ return otherShareAmount;
|
|
|
329
|
+ }
|
|
|
330
|
+
|
|
|
331
|
+ public void setOtherShareAmount(BigDecimal otherShareAmount)
|
|
|
332
|
+ {
|
|
|
333
|
+ this.otherShareAmount = otherShareAmount;
|
|
|
334
|
+ }
|
|
|
335
|
+
|
|
|
336
|
+ public BigDecimal getTotalIncome()
|
|
|
337
|
+ {
|
|
|
338
|
+ return totalIncome;
|
|
|
339
|
+ }
|
|
|
340
|
+
|
|
|
341
|
+ public void setTotalIncome(BigDecimal totalIncome)
|
|
|
342
|
+ {
|
|
|
343
|
+ this.totalIncome = totalIncome;
|
|
|
344
|
+ }
|
|
|
345
|
+
|
|
|
346
|
+ public BigDecimal getNetIncome()
|
|
|
347
|
+ {
|
|
|
348
|
+ return netIncome;
|
|
|
349
|
+ }
|
|
|
350
|
+
|
|
|
351
|
+ public void setNetIncome(BigDecimal netIncome)
|
|
|
352
|
+ {
|
|
|
353
|
+ this.netIncome = netIncome;
|
|
|
354
|
+ }
|
|
|
355
|
+
|
|
|
356
|
+ public BigDecimal getCashDividend()
|
|
|
357
|
+ {
|
|
|
358
|
+ return cashDividend;
|
|
|
359
|
+ }
|
|
|
360
|
+
|
|
|
361
|
+ public void setCashDividend(BigDecimal cashDividend)
|
|
|
362
|
+ {
|
|
|
363
|
+ this.cashDividend = cashDividend;
|
|
|
364
|
+ }
|
|
|
365
|
+
|
|
|
366
|
+ public BigDecimal getInKindDividend()
|
|
|
367
|
+ {
|
|
|
368
|
+ return inKindDividend;
|
|
|
369
|
+ }
|
|
|
370
|
+
|
|
|
371
|
+ public void setInKindDividend(BigDecimal inKindDividend)
|
|
|
372
|
+ {
|
|
|
373
|
+ this.inKindDividend = inKindDividend;
|
|
|
374
|
+ }
|
|
|
375
|
+
|
|
|
376
|
+ public BigDecimal getRevolvingFund()
|
|
|
377
|
+ {
|
|
|
378
|
+ return revolvingFund;
|
|
|
379
|
+ }
|
|
|
380
|
+
|
|
|
381
|
+ public void setRevolvingFund(BigDecimal revolvingFund)
|
|
|
382
|
+ {
|
|
|
383
|
+ this.revolvingFund = revolvingFund;
|
|
|
384
|
+ }
|
|
|
385
|
+
|
|
|
386
|
+ public BigDecimal getLossAmount()
|
|
|
387
|
+ {
|
|
|
388
|
+ return lossAmount;
|
|
|
389
|
+ }
|
|
|
390
|
+
|
|
|
391
|
+ public void setLossAmount(BigDecimal lossAmount)
|
|
|
392
|
+ {
|
|
|
393
|
+ this.lossAmount = lossAmount;
|
|
|
394
|
+ }
|
|
|
395
|
+
|
|
|
396
|
+ public Integer getCollegeGraduateCount()
|
|
|
397
|
+ {
|
|
|
398
|
+ return collegeGraduateCount;
|
|
|
399
|
+ }
|
|
|
400
|
+
|
|
|
401
|
+ public void setCollegeGraduateCount(Integer collegeGraduateCount)
|
|
|
402
|
+ {
|
|
|
403
|
+ this.collegeGraduateCount = collegeGraduateCount;
|
|
|
404
|
+ }
|
|
|
405
|
+
|
|
|
406
|
+ public BigDecimal getCollegeGraduateWage()
|
|
|
407
|
+ {
|
|
|
408
|
+ return collegeGraduateWage;
|
|
|
409
|
+ }
|
|
|
410
|
+
|
|
|
411
|
+ public void setCollegeGraduateWage(BigDecimal collegeGraduateWage)
|
|
|
412
|
+ {
|
|
|
413
|
+ this.collegeGraduateWage = collegeGraduateWage;
|
|
|
414
|
+ }
|
|
|
415
|
+
|
|
|
416
|
+ public Integer getFarmerTransferEmploymentCount()
|
|
|
417
|
+ {
|
|
|
418
|
+ return farmerTransferEmploymentCount;
|
|
|
419
|
+ }
|
|
|
420
|
+
|
|
|
421
|
+ public void setFarmerTransferEmploymentCount(Integer farmerTransferEmploymentCount)
|
|
|
422
|
+ {
|
|
|
423
|
+ this.farmerTransferEmploymentCount = farmerTransferEmploymentCount;
|
|
|
424
|
+ }
|
|
|
425
|
+
|
|
|
426
|
+ public BigDecimal getFarmerTransferWage()
|
|
|
427
|
+ {
|
|
|
428
|
+ return farmerTransferWage;
|
|
|
429
|
+ }
|
|
|
430
|
+
|
|
|
431
|
+ public void setFarmerTransferWage(BigDecimal farmerTransferWage)
|
|
|
432
|
+ {
|
|
|
433
|
+ this.farmerTransferWage = farmerTransferWage;
|
|
|
434
|
+ }
|
|
|
435
|
+
|
|
|
436
|
+ public Integer getCattleInventoryCount()
|
|
|
437
|
+ {
|
|
|
438
|
+ return cattleInventoryCount;
|
|
|
439
|
+ }
|
|
|
440
|
+
|
|
|
441
|
+ public void setCattleInventoryCount(Integer cattleInventoryCount)
|
|
|
442
|
+ {
|
|
|
443
|
+ this.cattleInventoryCount = cattleInventoryCount;
|
|
|
444
|
+ }
|
|
|
445
|
+
|
|
|
446
|
+ public Integer getCattleOutboundCount()
|
|
|
447
|
+ {
|
|
|
448
|
+ return cattleOutboundCount;
|
|
|
449
|
+ }
|
|
|
450
|
+
|
|
|
451
|
+ public void setCattleOutboundCount(Integer cattleOutboundCount)
|
|
|
452
|
+ {
|
|
|
453
|
+ this.cattleOutboundCount = cattleOutboundCount;
|
|
|
454
|
+ }
|
|
|
455
|
+
|
|
|
456
|
+ public Integer getSheepInventoryCount()
|
|
|
457
|
+ {
|
|
|
458
|
+ return sheepInventoryCount;
|
|
|
459
|
+ }
|
|
|
460
|
+
|
|
|
461
|
+ public void setSheepInventoryCount(Integer sheepInventoryCount)
|
|
|
462
|
+ {
|
|
|
463
|
+ this.sheepInventoryCount = sheepInventoryCount;
|
|
|
464
|
+ }
|
|
|
465
|
+
|
|
|
466
|
+ public Integer getSheepOutboundCount()
|
|
|
467
|
+ {
|
|
|
468
|
+ return sheepOutboundCount;
|
|
|
469
|
+ }
|
|
|
470
|
+
|
|
|
471
|
+ public void setSheepOutboundCount(Integer sheepOutboundCount)
|
|
|
472
|
+ {
|
|
|
473
|
+ this.sheepOutboundCount = sheepOutboundCount;
|
|
|
474
|
+ }
|
|
|
475
|
+
|
|
|
476
|
+ public Integer getTrademarkProductCount()
|
|
|
477
|
+ {
|
|
|
478
|
+ return trademarkProductCount;
|
|
|
479
|
+ }
|
|
|
480
|
+
|
|
|
481
|
+ public void setTrademarkProductCount(Integer trademarkProductCount)
|
|
|
482
|
+ {
|
|
|
483
|
+ this.trademarkProductCount = trademarkProductCount;
|
|
|
484
|
+ }
|
|
|
485
|
+
|
|
|
486
|
+ public Integer getQualityCertProductCount()
|
|
|
487
|
+ {
|
|
|
488
|
+ return qualityCertProductCount;
|
|
|
489
|
+ }
|
|
|
490
|
+
|
|
|
491
|
+ public void setQualityCertProductCount(Integer qualityCertProductCount)
|
|
|
492
|
+ {
|
|
|
493
|
+ this.qualityCertProductCount = qualityCertProductCount;
|
|
|
494
|
+ }
|
|
|
495
|
+
|
|
|
496
|
+ public Integer getTrainingManageCount()
|
|
|
497
|
+ {
|
|
|
498
|
+ return trainingManageCount;
|
|
|
499
|
+ }
|
|
|
500
|
+
|
|
|
501
|
+ public void setTrainingManageCount(Integer trainingManageCount)
|
|
|
502
|
+ {
|
|
|
503
|
+ this.trainingManageCount = trainingManageCount;
|
|
|
504
|
+ }
|
|
|
505
|
+
|
|
|
506
|
+ public Integer getTrainingSkillCount()
|
|
|
507
|
+ {
|
|
|
508
|
+ return trainingSkillCount;
|
|
|
509
|
+ }
|
|
|
510
|
+
|
|
|
511
|
+ public void setTrainingSkillCount(Integer trainingSkillCount)
|
|
|
512
|
+ {
|
|
|
513
|
+ this.trainingSkillCount = trainingSkillCount;
|
|
|
514
|
+ }
|
|
|
515
|
+
|
|
|
516
|
+ public Integer getTrainingOtherCount()
|
|
|
517
|
+ {
|
|
|
518
|
+ return trainingOtherCount;
|
|
|
519
|
+ }
|
|
|
520
|
+
|
|
|
521
|
+ public void setTrainingOtherCount(Integer trainingOtherCount)
|
|
|
522
|
+ {
|
|
|
523
|
+ this.trainingOtherCount = trainingOtherCount;
|
|
|
524
|
+ }
|
|
|
525
|
+
|
|
|
526
|
+ public String getBusinessScope()
|
|
|
527
|
+ {
|
|
|
528
|
+ return businessScope;
|
|
|
529
|
+ }
|
|
|
530
|
+
|
|
|
531
|
+ public void setBusinessScope(String businessScope)
|
|
|
532
|
+ {
|
|
|
533
|
+ this.businessScope = businessScope;
|
|
|
534
|
+ }
|
|
|
535
|
+
|
|
|
536
|
+ public String getBusinessModel()
|
|
|
537
|
+ {
|
|
|
538
|
+ return businessModel;
|
|
|
539
|
+ }
|
|
|
540
|
+
|
|
|
541
|
+ public void setBusinessModel(String businessModel)
|
|
|
542
|
+ {
|
|
|
543
|
+ this.businessModel = businessModel;
|
|
|
544
|
+ }
|
|
|
545
|
+
|
|
|
546
|
+ public String getOperationStatus()
|
|
|
547
|
+ {
|
|
|
548
|
+ return operationStatus;
|
|
|
549
|
+ }
|
|
|
550
|
+
|
|
|
551
|
+ public void setOperationStatus(String operationStatus)
|
|
|
552
|
+ {
|
|
|
553
|
+ this.operationStatus = operationStatus;
|
|
|
554
|
+ }
|
|
|
555
|
+}
|