Browse Source

fix : 质量报告bug测试

lvxianyun 3 years ago
parent
commit
32d4dd485d
1 changed files with 28 additions and 0 deletions
  1. 28 0
      src/main/java/com/persagy/proxy/report/model/AdmInfoPoint.java

+ 28 - 0
src/main/java/com/persagy/proxy/report/model/AdmInfoPoint.java

@@ -0,0 +1,28 @@
+package com.persagy.proxy.report.model;
+
+import lombok.Data;
+
+/**
+ * @author lvxy
+ * @date 2021/11/1
+ */
+@Data
+public class AdmInfoPoint {
+    /** 自定义信息点总数 */
+    private Integer customInfoPointCounts = 0;
+
+    /** 项目中设备用到的自定义信息点数 */
+    private Integer customInfoPoint = 0;
+
+    /** 动态信息点总数 */
+    private Integer dynamicInfoPointCounts = 0;
+
+    /** 设备用到的动态信息点数 */
+    private Integer dynamicInfoPoint = 0;
+
+    /** 静态信息点总数 */
+    private Integer staticInfoPointCounts = 0;
+
+    /** 设备用到的静态信息点数 */
+    private Integer staticInfoPoint = 0;
+}