|
|
@@ -0,0 +1,464 @@
|
|
|
1
|
+package com.ruoyi.web.modules.industryservice.research.domain.vo;
|
|
|
2
|
+
|
|
|
3
|
+import java.math.BigDecimal;
|
|
|
4
|
+
|
|
|
5
|
+/**
|
|
|
6
|
+ * 科研开放接口 — 家庭牧场填报记录(脱敏法人姓名;不含部门 ID / 备注)。
|
|
|
7
|
+ */
|
|
|
8
|
+public class ResearchFamilyRanchVo
|
|
|
9
|
+{
|
|
|
10
|
+ /** 家庭牧场记录 ID */
|
|
|
11
|
+ private Long ranchId;
|
|
|
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 enterpriseName;
|
|
|
27
|
+
|
|
|
28
|
+ /** 法定代表人(脱敏) */
|
|
|
29
|
+ private String legalRepresentative;
|
|
|
30
|
+
|
|
|
31
|
+ /** 企业类型 */
|
|
|
32
|
+ private String enterpriseType;
|
|
|
33
|
+
|
|
|
34
|
+ /** 注册资本(万元) */
|
|
|
35
|
+ private BigDecimal registeredCapital;
|
|
|
36
|
+
|
|
|
37
|
+ /** 成立时间(yyyy-MM-dd) */
|
|
|
38
|
+ private String establishDate;
|
|
|
39
|
+
|
|
|
40
|
+ /** 从事畜牧业生产经营劳力人员 */
|
|
|
41
|
+ private Integer livestockLaborCount;
|
|
|
42
|
+
|
|
|
43
|
+ /** 年底牲畜存栏小计(牛+羊) */
|
|
|
44
|
+ private Integer stockSubtotal;
|
|
|
45
|
+
|
|
|
46
|
+ /** 牛年底存栏 */
|
|
|
47
|
+ private Integer cattleYearEndStock;
|
|
|
48
|
+
|
|
|
49
|
+ /** 牛能繁母畜 */
|
|
|
50
|
+ private Integer cattleBreedingFemaleStock;
|
|
|
51
|
+
|
|
|
52
|
+ /** 羊年底存栏 */
|
|
|
53
|
+ private Integer sheepYearEndStock;
|
|
|
54
|
+
|
|
|
55
|
+ /** 羊能繁母畜 */
|
|
|
56
|
+ private Integer sheepBreedingFemaleStock;
|
|
|
57
|
+
|
|
|
58
|
+ /** 牛出栏 */
|
|
|
59
|
+ private Integer cattleOutbound;
|
|
|
60
|
+
|
|
|
61
|
+ /** 羊出栏 */
|
|
|
62
|
+ private Integer sheepOutbound;
|
|
|
63
|
+
|
|
|
64
|
+ /** 草场面积小计(亩) */
|
|
|
65
|
+ private BigDecimal grasslandAreaSubtotal;
|
|
|
66
|
+
|
|
|
67
|
+ /** 草畜平衡面积(亩) */
|
|
|
68
|
+ private BigDecimal grassBalanceArea;
|
|
|
69
|
+
|
|
|
70
|
+ /** 流转经营草地面积(亩) */
|
|
|
71
|
+ private BigDecimal transferGrassArea;
|
|
|
72
|
+
|
|
|
73
|
+ /** 核定年末草畜平衡载畜量(绵羊单位) */
|
|
|
74
|
+ private BigDecimal approvedCarryingCapacity;
|
|
|
75
|
+
|
|
|
76
|
+ /** 年底牲畜存栏(绵羊单位) */
|
|
|
77
|
+ private BigDecimal yearEndStockSheepUnit;
|
|
|
78
|
+
|
|
|
79
|
+ /** 是否草畜平衡户(是/否) */
|
|
|
80
|
+ private String isGrassBalanced;
|
|
|
81
|
+
|
|
|
82
|
+ /** 年度经营总收入(万元) */
|
|
|
83
|
+ private BigDecimal income;
|
|
|
84
|
+
|
|
|
85
|
+ /** 年度经营总支出(万元) */
|
|
|
86
|
+ private BigDecimal expense;
|
|
|
87
|
+
|
|
|
88
|
+ /** 利润(万元)= 收入 - 支出 */
|
|
|
89
|
+ private BigDecimal profit;
|
|
|
90
|
+
|
|
|
91
|
+ /** 家庭牧场补助资金年份 */
|
|
|
92
|
+ private Integer subsidyYear;
|
|
|
93
|
+
|
|
|
94
|
+ /** 是否享受补助(是/否) */
|
|
|
95
|
+ private String hasSubsidy;
|
|
|
96
|
+
|
|
|
97
|
+ /** 补贴资金(万元) */
|
|
|
98
|
+ private BigDecimal subsidyAmount;
|
|
|
99
|
+
|
|
|
100
|
+ /** 是否有注册商标(是/否) */
|
|
|
101
|
+ private String hasTrademark;
|
|
|
102
|
+
|
|
|
103
|
+ /** 是否通过农产品质量认证(是/否) */
|
|
|
104
|
+ private String hasQualityCert;
|
|
|
105
|
+
|
|
|
106
|
+ /** 产品销售渠道 */
|
|
|
107
|
+ private String salesChannel;
|
|
|
108
|
+
|
|
|
109
|
+ /** 带动人数 */
|
|
|
110
|
+ private Integer drivenPopulation;
|
|
|
111
|
+
|
|
|
112
|
+ /** 发放工资(万元) */
|
|
|
113
|
+ private BigDecimal wagePaid;
|
|
|
114
|
+
|
|
|
115
|
+ public Long getRanchId()
|
|
|
116
|
+ {
|
|
|
117
|
+ return ranchId;
|
|
|
118
|
+ }
|
|
|
119
|
+
|
|
|
120
|
+ public void setRanchId(Long ranchId)
|
|
|
121
|
+ {
|
|
|
122
|
+ this.ranchId = ranchId;
|
|
|
123
|
+ }
|
|
|
124
|
+
|
|
|
125
|
+ public Integer getStatYear()
|
|
|
126
|
+ {
|
|
|
127
|
+ return statYear;
|
|
|
128
|
+ }
|
|
|
129
|
+
|
|
|
130
|
+ public void setStatYear(Integer statYear)
|
|
|
131
|
+ {
|
|
|
132
|
+ this.statYear = statYear;
|
|
|
133
|
+ }
|
|
|
134
|
+
|
|
|
135
|
+ public Integer getStatMonth()
|
|
|
136
|
+ {
|
|
|
137
|
+ return statMonth;
|
|
|
138
|
+ }
|
|
|
139
|
+
|
|
|
140
|
+ public void setStatMonth(Integer statMonth)
|
|
|
141
|
+ {
|
|
|
142
|
+ this.statMonth = statMonth;
|
|
|
143
|
+ }
|
|
|
144
|
+
|
|
|
145
|
+ public String getTownName()
|
|
|
146
|
+ {
|
|
|
147
|
+ return townName;
|
|
|
148
|
+ }
|
|
|
149
|
+
|
|
|
150
|
+ public void setTownName(String townName)
|
|
|
151
|
+ {
|
|
|
152
|
+ this.townName = townName;
|
|
|
153
|
+ }
|
|
|
154
|
+
|
|
|
155
|
+ public String getVillageName()
|
|
|
156
|
+ {
|
|
|
157
|
+ return villageName;
|
|
|
158
|
+ }
|
|
|
159
|
+
|
|
|
160
|
+ public void setVillageName(String villageName)
|
|
|
161
|
+ {
|
|
|
162
|
+ this.villageName = villageName;
|
|
|
163
|
+ }
|
|
|
164
|
+
|
|
|
165
|
+ public String getEnterpriseName()
|
|
|
166
|
+ {
|
|
|
167
|
+ return enterpriseName;
|
|
|
168
|
+ }
|
|
|
169
|
+
|
|
|
170
|
+ public void setEnterpriseName(String enterpriseName)
|
|
|
171
|
+ {
|
|
|
172
|
+ this.enterpriseName = enterpriseName;
|
|
|
173
|
+ }
|
|
|
174
|
+
|
|
|
175
|
+ public String getLegalRepresentative()
|
|
|
176
|
+ {
|
|
|
177
|
+ return legalRepresentative;
|
|
|
178
|
+ }
|
|
|
179
|
+
|
|
|
180
|
+ public void setLegalRepresentative(String legalRepresentative)
|
|
|
181
|
+ {
|
|
|
182
|
+ this.legalRepresentative = legalRepresentative;
|
|
|
183
|
+ }
|
|
|
184
|
+
|
|
|
185
|
+ public String getEnterpriseType()
|
|
|
186
|
+ {
|
|
|
187
|
+ return enterpriseType;
|
|
|
188
|
+ }
|
|
|
189
|
+
|
|
|
190
|
+ public void setEnterpriseType(String enterpriseType)
|
|
|
191
|
+ {
|
|
|
192
|
+ this.enterpriseType = enterpriseType;
|
|
|
193
|
+ }
|
|
|
194
|
+
|
|
|
195
|
+ public BigDecimal getRegisteredCapital()
|
|
|
196
|
+ {
|
|
|
197
|
+ return registeredCapital;
|
|
|
198
|
+ }
|
|
|
199
|
+
|
|
|
200
|
+ public void setRegisteredCapital(BigDecimal registeredCapital)
|
|
|
201
|
+ {
|
|
|
202
|
+ this.registeredCapital = registeredCapital;
|
|
|
203
|
+ }
|
|
|
204
|
+
|
|
|
205
|
+ public String getEstablishDate()
|
|
|
206
|
+ {
|
|
|
207
|
+ return establishDate;
|
|
|
208
|
+ }
|
|
|
209
|
+
|
|
|
210
|
+ public void setEstablishDate(String establishDate)
|
|
|
211
|
+ {
|
|
|
212
|
+ this.establishDate = establishDate;
|
|
|
213
|
+ }
|
|
|
214
|
+
|
|
|
215
|
+ public Integer getLivestockLaborCount()
|
|
|
216
|
+ {
|
|
|
217
|
+ return livestockLaborCount;
|
|
|
218
|
+ }
|
|
|
219
|
+
|
|
|
220
|
+ public void setLivestockLaborCount(Integer livestockLaborCount)
|
|
|
221
|
+ {
|
|
|
222
|
+ this.livestockLaborCount = livestockLaborCount;
|
|
|
223
|
+ }
|
|
|
224
|
+
|
|
|
225
|
+ public Integer getStockSubtotal()
|
|
|
226
|
+ {
|
|
|
227
|
+ return stockSubtotal;
|
|
|
228
|
+ }
|
|
|
229
|
+
|
|
|
230
|
+ public void setStockSubtotal(Integer stockSubtotal)
|
|
|
231
|
+ {
|
|
|
232
|
+ this.stockSubtotal = stockSubtotal;
|
|
|
233
|
+ }
|
|
|
234
|
+
|
|
|
235
|
+ public Integer getCattleYearEndStock()
|
|
|
236
|
+ {
|
|
|
237
|
+ return cattleYearEndStock;
|
|
|
238
|
+ }
|
|
|
239
|
+
|
|
|
240
|
+ public void setCattleYearEndStock(Integer cattleYearEndStock)
|
|
|
241
|
+ {
|
|
|
242
|
+ this.cattleYearEndStock = cattleYearEndStock;
|
|
|
243
|
+ }
|
|
|
244
|
+
|
|
|
245
|
+ public Integer getCattleBreedingFemaleStock()
|
|
|
246
|
+ {
|
|
|
247
|
+ return cattleBreedingFemaleStock;
|
|
|
248
|
+ }
|
|
|
249
|
+
|
|
|
250
|
+ public void setCattleBreedingFemaleStock(Integer cattleBreedingFemaleStock)
|
|
|
251
|
+ {
|
|
|
252
|
+ this.cattleBreedingFemaleStock = cattleBreedingFemaleStock;
|
|
|
253
|
+ }
|
|
|
254
|
+
|
|
|
255
|
+ public Integer getSheepYearEndStock()
|
|
|
256
|
+ {
|
|
|
257
|
+ return sheepYearEndStock;
|
|
|
258
|
+ }
|
|
|
259
|
+
|
|
|
260
|
+ public void setSheepYearEndStock(Integer sheepYearEndStock)
|
|
|
261
|
+ {
|
|
|
262
|
+ this.sheepYearEndStock = sheepYearEndStock;
|
|
|
263
|
+ }
|
|
|
264
|
+
|
|
|
265
|
+ public Integer getSheepBreedingFemaleStock()
|
|
|
266
|
+ {
|
|
|
267
|
+ return sheepBreedingFemaleStock;
|
|
|
268
|
+ }
|
|
|
269
|
+
|
|
|
270
|
+ public void setSheepBreedingFemaleStock(Integer sheepBreedingFemaleStock)
|
|
|
271
|
+ {
|
|
|
272
|
+ this.sheepBreedingFemaleStock = sheepBreedingFemaleStock;
|
|
|
273
|
+ }
|
|
|
274
|
+
|
|
|
275
|
+ public Integer getCattleOutbound()
|
|
|
276
|
+ {
|
|
|
277
|
+ return cattleOutbound;
|
|
|
278
|
+ }
|
|
|
279
|
+
|
|
|
280
|
+ public void setCattleOutbound(Integer cattleOutbound)
|
|
|
281
|
+ {
|
|
|
282
|
+ this.cattleOutbound = cattleOutbound;
|
|
|
283
|
+ }
|
|
|
284
|
+
|
|
|
285
|
+ public Integer getSheepOutbound()
|
|
|
286
|
+ {
|
|
|
287
|
+ return sheepOutbound;
|
|
|
288
|
+ }
|
|
|
289
|
+
|
|
|
290
|
+ public void setSheepOutbound(Integer sheepOutbound)
|
|
|
291
|
+ {
|
|
|
292
|
+ this.sheepOutbound = sheepOutbound;
|
|
|
293
|
+ }
|
|
|
294
|
+
|
|
|
295
|
+ public BigDecimal getGrasslandAreaSubtotal()
|
|
|
296
|
+ {
|
|
|
297
|
+ return grasslandAreaSubtotal;
|
|
|
298
|
+ }
|
|
|
299
|
+
|
|
|
300
|
+ public void setGrasslandAreaSubtotal(BigDecimal grasslandAreaSubtotal)
|
|
|
301
|
+ {
|
|
|
302
|
+ this.grasslandAreaSubtotal = grasslandAreaSubtotal;
|
|
|
303
|
+ }
|
|
|
304
|
+
|
|
|
305
|
+ public BigDecimal getGrassBalanceArea()
|
|
|
306
|
+ {
|
|
|
307
|
+ return grassBalanceArea;
|
|
|
308
|
+ }
|
|
|
309
|
+
|
|
|
310
|
+ public void setGrassBalanceArea(BigDecimal grassBalanceArea)
|
|
|
311
|
+ {
|
|
|
312
|
+ this.grassBalanceArea = grassBalanceArea;
|
|
|
313
|
+ }
|
|
|
314
|
+
|
|
|
315
|
+ public BigDecimal getTransferGrassArea()
|
|
|
316
|
+ {
|
|
|
317
|
+ return transferGrassArea;
|
|
|
318
|
+ }
|
|
|
319
|
+
|
|
|
320
|
+ public void setTransferGrassArea(BigDecimal transferGrassArea)
|
|
|
321
|
+ {
|
|
|
322
|
+ this.transferGrassArea = transferGrassArea;
|
|
|
323
|
+ }
|
|
|
324
|
+
|
|
|
325
|
+ public BigDecimal getApprovedCarryingCapacity()
|
|
|
326
|
+ {
|
|
|
327
|
+ return approvedCarryingCapacity;
|
|
|
328
|
+ }
|
|
|
329
|
+
|
|
|
330
|
+ public void setApprovedCarryingCapacity(BigDecimal approvedCarryingCapacity)
|
|
|
331
|
+ {
|
|
|
332
|
+ this.approvedCarryingCapacity = approvedCarryingCapacity;
|
|
|
333
|
+ }
|
|
|
334
|
+
|
|
|
335
|
+ public BigDecimal getYearEndStockSheepUnit()
|
|
|
336
|
+ {
|
|
|
337
|
+ return yearEndStockSheepUnit;
|
|
|
338
|
+ }
|
|
|
339
|
+
|
|
|
340
|
+ public void setYearEndStockSheepUnit(BigDecimal yearEndStockSheepUnit)
|
|
|
341
|
+ {
|
|
|
342
|
+ this.yearEndStockSheepUnit = yearEndStockSheepUnit;
|
|
|
343
|
+ }
|
|
|
344
|
+
|
|
|
345
|
+ public String getIsGrassBalanced()
|
|
|
346
|
+ {
|
|
|
347
|
+ return isGrassBalanced;
|
|
|
348
|
+ }
|
|
|
349
|
+
|
|
|
350
|
+ public void setIsGrassBalanced(String isGrassBalanced)
|
|
|
351
|
+ {
|
|
|
352
|
+ this.isGrassBalanced = isGrassBalanced;
|
|
|
353
|
+ }
|
|
|
354
|
+
|
|
|
355
|
+ public BigDecimal getIncome()
|
|
|
356
|
+ {
|
|
|
357
|
+ return income;
|
|
|
358
|
+ }
|
|
|
359
|
+
|
|
|
360
|
+ public void setIncome(BigDecimal income)
|
|
|
361
|
+ {
|
|
|
362
|
+ this.income = income;
|
|
|
363
|
+ }
|
|
|
364
|
+
|
|
|
365
|
+ public BigDecimal getExpense()
|
|
|
366
|
+ {
|
|
|
367
|
+ return expense;
|
|
|
368
|
+ }
|
|
|
369
|
+
|
|
|
370
|
+ public void setExpense(BigDecimal expense)
|
|
|
371
|
+ {
|
|
|
372
|
+ this.expense = expense;
|
|
|
373
|
+ }
|
|
|
374
|
+
|
|
|
375
|
+ public BigDecimal getProfit()
|
|
|
376
|
+ {
|
|
|
377
|
+ return profit;
|
|
|
378
|
+ }
|
|
|
379
|
+
|
|
|
380
|
+ public void setProfit(BigDecimal profit)
|
|
|
381
|
+ {
|
|
|
382
|
+ this.profit = profit;
|
|
|
383
|
+ }
|
|
|
384
|
+
|
|
|
385
|
+ public Integer getSubsidyYear()
|
|
|
386
|
+ {
|
|
|
387
|
+ return subsidyYear;
|
|
|
388
|
+ }
|
|
|
389
|
+
|
|
|
390
|
+ public void setSubsidyYear(Integer subsidyYear)
|
|
|
391
|
+ {
|
|
|
392
|
+ this.subsidyYear = subsidyYear;
|
|
|
393
|
+ }
|
|
|
394
|
+
|
|
|
395
|
+ public String getHasSubsidy()
|
|
|
396
|
+ {
|
|
|
397
|
+ return hasSubsidy;
|
|
|
398
|
+ }
|
|
|
399
|
+
|
|
|
400
|
+ public void setHasSubsidy(String hasSubsidy)
|
|
|
401
|
+ {
|
|
|
402
|
+ this.hasSubsidy = hasSubsidy;
|
|
|
403
|
+ }
|
|
|
404
|
+
|
|
|
405
|
+ public BigDecimal getSubsidyAmount()
|
|
|
406
|
+ {
|
|
|
407
|
+ return subsidyAmount;
|
|
|
408
|
+ }
|
|
|
409
|
+
|
|
|
410
|
+ public void setSubsidyAmount(BigDecimal subsidyAmount)
|
|
|
411
|
+ {
|
|
|
412
|
+ this.subsidyAmount = subsidyAmount;
|
|
|
413
|
+ }
|
|
|
414
|
+
|
|
|
415
|
+ public String getHasTrademark()
|
|
|
416
|
+ {
|
|
|
417
|
+ return hasTrademark;
|
|
|
418
|
+ }
|
|
|
419
|
+
|
|
|
420
|
+ public void setHasTrademark(String hasTrademark)
|
|
|
421
|
+ {
|
|
|
422
|
+ this.hasTrademark = hasTrademark;
|
|
|
423
|
+ }
|
|
|
424
|
+
|
|
|
425
|
+ public String getHasQualityCert()
|
|
|
426
|
+ {
|
|
|
427
|
+ return hasQualityCert;
|
|
|
428
|
+ }
|
|
|
429
|
+
|
|
|
430
|
+ public void setHasQualityCert(String hasQualityCert)
|
|
|
431
|
+ {
|
|
|
432
|
+ this.hasQualityCert = hasQualityCert;
|
|
|
433
|
+ }
|
|
|
434
|
+
|
|
|
435
|
+ public String getSalesChannel()
|
|
|
436
|
+ {
|
|
|
437
|
+ return salesChannel;
|
|
|
438
|
+ }
|
|
|
439
|
+
|
|
|
440
|
+ public void setSalesChannel(String salesChannel)
|
|
|
441
|
+ {
|
|
|
442
|
+ this.salesChannel = salesChannel;
|
|
|
443
|
+ }
|
|
|
444
|
+
|
|
|
445
|
+ public Integer getDrivenPopulation()
|
|
|
446
|
+ {
|
|
|
447
|
+ return drivenPopulation;
|
|
|
448
|
+ }
|
|
|
449
|
+
|
|
|
450
|
+ public void setDrivenPopulation(Integer drivenPopulation)
|
|
|
451
|
+ {
|
|
|
452
|
+ this.drivenPopulation = drivenPopulation;
|
|
|
453
|
+ }
|
|
|
454
|
+
|
|
|
455
|
+ public BigDecimal getWagePaid()
|
|
|
456
|
+ {
|
|
|
457
|
+ return wagePaid;
|
|
|
458
|
+ }
|
|
|
459
|
+
|
|
|
460
|
+ public void setWagePaid(BigDecimal wagePaid)
|
|
|
461
|
+ {
|
|
|
462
|
+ this.wagePaid = wagePaid;
|
|
|
463
|
+ }
|
|
|
464
|
+}
|