Explorar el Código

牦牛出栏数据

wwh hace 1 mes
padre
commit
67c9e2ae72

+ 59 - 0
baqing-admin/src/main/java/com/ruoyi/web/modules/screen/domain/vo/HomeScreenTownMapMarkerVo.java

@@ -0,0 +1,59 @@
1
+package com.ruoyi.web.modules.screen.domain.vo;
2
+
3
+/**
4
+ * 大屏首页地图标注 — 乡镇牦牛存栏/出栏。
5
+ */
6
+public class HomeScreenTownMapMarkerVo
7
+{
8
+    /** 所属乡镇 dept_id */
9
+    private Long townDeptId;
10
+
11
+    /** 乡镇名称 */
12
+    private String townName;
13
+
14
+    /** 牦牛存栏数(头),来源 {@code biz_yak_herd_inventory.yak_total} */
15
+    private Integer yakInventoryCount;
16
+
17
+    /** 牦牛出栏数(头),来源 {@code biz_yak_outbound_report.yak_outbound_count} */
18
+    private Integer yakOutboundCount;
19
+
20
+    public Long getTownDeptId()
21
+    {
22
+        return townDeptId;
23
+    }
24
+
25
+    public void setTownDeptId(Long townDeptId)
26
+    {
27
+        this.townDeptId = townDeptId;
28
+    }
29
+
30
+    public String getTownName()
31
+    {
32
+        return townName;
33
+    }
34
+
35
+    public void setTownName(String townName)
36
+    {
37
+        this.townName = townName;
38
+    }
39
+
40
+    public Integer getYakInventoryCount()
41
+    {
42
+        return yakInventoryCount;
43
+    }
44
+
45
+    public void setYakInventoryCount(Integer yakInventoryCount)
46
+    {
47
+        this.yakInventoryCount = yakInventoryCount;
48
+    }
49
+
50
+    public Integer getYakOutboundCount()
51
+    {
52
+        return yakOutboundCount;
53
+    }
54
+
55
+    public void setYakOutboundCount(Integer yakOutboundCount)
56
+    {
57
+        this.yakOutboundCount = yakOutboundCount;
58
+    }
59
+}

+ 48 - 0
baqing-admin/src/main/java/com/ruoyi/web/modules/screen/domain/vo/HomeScreenTownMapVo.java

@@ -0,0 +1,48 @@
1
+package com.ruoyi.web.modules.screen.domain.vo;
2
+
3
+import java.util.List;
4
+
5
+/**
6
+ * 大屏首页地图标注数据。
7
+ */
8
+public class HomeScreenTownMapVo
9
+{
10
+    /** 存栏数据所属年份(当前自然年上一年) */
11
+    private Integer herdStatYear;
12
+
13
+    /** 出栏数据所属年份(当前自然年) */
14
+    private Integer outboundStatYear;
15
+
16
+    /** 各乡镇标注列表 */
17
+    private List<HomeScreenTownMapMarkerVo> markers;
18
+
19
+    public Integer getHerdStatYear()
20
+    {
21
+        return herdStatYear;
22
+    }
23
+
24
+    public void setHerdStatYear(Integer herdStatYear)
25
+    {
26
+        this.herdStatYear = herdStatYear;
27
+    }
28
+
29
+    public Integer getOutboundStatYear()
30
+    {
31
+        return outboundStatYear;
32
+    }
33
+
34
+    public void setOutboundStatYear(Integer outboundStatYear)
35
+    {
36
+        this.outboundStatYear = outboundStatYear;
37
+    }
38
+
39
+    public List<HomeScreenTownMapMarkerVo> getMarkers()
40
+    {
41
+        return markers;
42
+    }
43
+
44
+    public void setMarkers(List<HomeScreenTownMapMarkerVo> markers)
45
+    {
46
+        this.markers = markers;
47
+    }
48
+}