Browse Source

fix : FOV-68

lvxianyun 3 years ago
parent
commit
8a498691bc
1 changed files with 26 additions and 0 deletions
  1. 26 0
      src/main/java/com/persagy/proxy/report/model/AdmGatherInfoPoint.java

+ 26 - 0
src/main/java/com/persagy/proxy/report/model/AdmGatherInfoPoint.java

@@ -0,0 +1,26 @@
+package com.persagy.proxy.report.model;
+
+import lombok.Data;
+
+/**
+ * 已采集信息点统计实体类
+ *
+ * @author lvxy
+ * @date 2021/10/28
+ */
+@Data
+public class AdmGatherInfoPoint {
+    /** 信息点总数(数字字典+自定义信息点) */
+    private Integer gatherInfoPointCounts;
+    private Integer dynamicInfoPointCounts;
+    private Integer staticInfoPointCounts;
+
+    /** 已采集的动态信息点总数 */
+    private Integer gatherDynamicInfoPointCounts;
+
+    /** 已采集的静态信息点总数 */
+    private Integer gatherStaticInfoPointCounts;
+
+    /** 已采集的自定义信息点总数 */
+    private Integer gatherCustomInfoPointCounts;
+}