From b6977f84fe0821d4925ec042c05e2b7ec7a74b54 Mon Sep 17 00:00:00 2001 From: cuibaocheng Date: Wed, 8 Dec 2021 17:56:31 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=8D=95=E4=BD=8D=E7=9A=84?= =?UTF-8?q?=E7=96=91=E9=9A=BE=E6=A1=88=E4=BB=B6=20/=20=E6=A0=87=E6=9D=86?= =?UTF-8?q?=E6=A1=88=E4=BB=B6=20=E4=BF=AE=E6=94=B9=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E7=9A=84=E6=96=B9=E5=BC=8F=20=E5=A2=9E=E5=8A=A0=E4=BA=86?= =?UTF-8?q?=E7=96=91=E9=9A=BE=E6=A1=88=E4=BB=B6=E5=92=8C=E6=A0=87=E6=A1=88?= =?UTF-8?q?=E6=A1=88=E4=BB=B6=E7=9A=84=E5=8F=AA=E7=9C=8B=E8=87=AA=E5=B7=B1?= =?UTF-8?q?=E6=A0=87=E8=AE=B0=E7=9A=84=E6=A1=88=E4=BB=B6=E7=9A=84=E5=8A=9F?= =?UTF-8?q?=E8=83=BD,=20=E4=BB=A5=E5=8F=8A=E5=8F=AA=E8=83=BD=E8=87=AA?= =?UTF-8?q?=E5=B7=B1=E5=8F=96=E6=B6=88=E6=A0=87=E8=AE=B0=E7=9A=84=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=20=E5=A2=9E=E5=8A=A0=E5=8D=95=E4=BD=8D=E7=9A=84?= =?UTF-8?q?=E7=BD=91=E6=A0=BC=E5=91=98=E6=95=88=E7=8E=87=E7=BB=9F=E8=AE=A1?= =?UTF-8?q?=20=E4=BF=AE=E6=94=B9=E4=BA=86=E5=8D=95=E4=BD=8D=E7=9A=84?= =?UTF-8?q?=E7=BD=91=E6=A0=BC=E5=91=98=E6=95=88=E7=8E=87=E7=BB=9F=E8=AE=A1?= =?UTF-8?q?=E7=9A=84=E7=9B=B8=E5=85=B3=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../casestatistics/DepartmentDataDTO.java | 74 ++ src/main/resources/application-text.yml | 2 +- .../route/casestatistics/department-grid.html | 760 ++++++++++++++++++ .../static/route/sample/list-dept.html | 325 ++++++++ 4 files changed, 1160 insertions(+), 1 deletion(-) create mode 100644 src/main/java/cn/com/tenlion/pojo/dtos/casestatistics/DepartmentDataDTO.java create mode 100644 src/main/resources/static/route/casestatistics/department-grid.html create mode 100644 src/main/resources/static/route/sample/list-dept.html diff --git a/src/main/java/cn/com/tenlion/pojo/dtos/casestatistics/DepartmentDataDTO.java b/src/main/java/cn/com/tenlion/pojo/dtos/casestatistics/DepartmentDataDTO.java new file mode 100644 index 0000000..0c30cb0 --- /dev/null +++ b/src/main/java/cn/com/tenlion/pojo/dtos/casestatistics/DepartmentDataDTO.java @@ -0,0 +1,74 @@ +package cn.com.tenlion.pojo.dtos.casestatistics; + +import ink.wgink.pojo.dtos.department.DepartmentDTO; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; + +import java.util.ArrayList; +import java.util.List; + +/** + * + * @ClassName: CaseStatisticsDTO + * @Description: 事件统计 + * @Author: CodeFactory + * @Date: 2021-09-06 17:00:49 + * @Version: 3.0 + **/ +@ApiModel +public class DepartmentDataDTO { + + @ApiModelProperty(name = "departmentId", value = "单位ID") + private String departmentId; + @ApiModelProperty(name = "departmentName", value = "单位名称") + private String departmentName; + @ApiModelProperty(name = "type", value = "1单位.2部门") + private String type; + @ApiModelProperty(name = "dataCount", value = "网格员数量") + private Integer dataCount; + @ApiModelProperty(name = "list", value = "网格员") + private List dataList; + + public List getDataList() { + if (dataList == null) { + return new ArrayList<>(); + } + return dataList; + } + + public void setDataList(List dataList) { + this.dataList = dataList; + } + + public String getDepartmentId() { + return departmentId == null ? "" : departmentId; + } + + public void setDepartmentId(String departmentId) { + this.departmentId = departmentId; + } + + public String getDepartmentName() { + return departmentName == null ? "" : departmentName; + } + + public void setDepartmentName(String departmentName) { + this.departmentName = departmentName; + } + + public Integer getDataCount() { + return dataCount; + } + + public void setDataCount(Integer dataCount) { + this.dataCount = dataCount; + } + + public String getType() { + return type == null ? "" : type; + } + + public void setType(String type) { + this.type = type; + } +} diff --git a/src/main/resources/application-text.yml b/src/main/resources/application-text.yml index fd0f68a..7c34744 100644 --- a/src/main/resources/application-text.yml +++ b/src/main/resources/application-text.yml @@ -147,7 +147,7 @@ file: video: 100 audio: 600 api-path: - #103 + #103 155 user-center: http://192.168.0.155:7011/usercenter security: diff --git a/src/main/resources/static/route/casestatistics/department-grid.html b/src/main/resources/static/route/casestatistics/department-grid.html new file mode 100644 index 0000000..a4d66e8 --- /dev/null +++ b/src/main/resources/static/route/casestatistics/department-grid.html @@ -0,0 +1,760 @@ + + + + + + + + + + + + + + +
+
+
+
+
+ +
+
+ +
+
+
+
+
+
+
+
+ + +
+
+ + +
+ + + + +
+ +
+ + + + + + +
+
+
+
+
+ + + + + \ No newline at end of file diff --git a/src/main/resources/static/route/sample/list-dept.html b/src/main/resources/static/route/sample/list-dept.html new file mode 100644 index 0000000..f6a5a13 --- /dev/null +++ b/src/main/resources/static/route/sample/list-dept.html @@ -0,0 +1,325 @@ + + + + + + + + + + + + + +
+
+
+
+
+
+
+ +
+
+ +
+
+ +
+ + +
+
+
+
+
+
+
+ + + + + \ No newline at end of file