From 0414ddb0b2b3a7199ae6181a770f97ac140dbd73 Mon Sep 17 00:00:00 2001
From: zhangf <1603559716@qq.com>
Date: Wed, 08 May 2024 16:46:22 +0800
Subject: [PATCH] spi统计
---
incident-manage/incident-manage-service/src/main/java/com/gkhy/safePlatform/incidentManage/model/dto/resp/AccidentCountByGradeRespDTO.java | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 50 insertions(+), 0 deletions(-)
diff --git a/incident-manage/incident-manage-service/src/main/java/com/gkhy/safePlatform/incidentManage/model/dto/resp/AccidentCountByGradeRespDTO.java b/incident-manage/incident-manage-service/src/main/java/com/gkhy/safePlatform/incidentManage/model/dto/resp/AccidentCountByGradeRespDTO.java
new file mode 100644
index 0000000..ed01199
--- /dev/null
+++ b/incident-manage/incident-manage-service/src/main/java/com/gkhy/safePlatform/incidentManage/model/dto/resp/AccidentCountByGradeRespDTO.java
@@ -0,0 +1,50 @@
+package com.gkhy.safePlatform.incidentManage.model.dto.resp;
+
+
+public class AccidentCountByGradeRespDTO {
+ private int accidentOne;
+ private int accidentTwo;
+ private int accidentThree;
+ private int accidentFour;
+ private int accidentTotal;
+
+ public int getAccidentOne() {
+ return accidentOne;
+ }
+
+ public void setAccidentOne(int accidentOne) {
+ this.accidentOne = accidentOne;
+ }
+
+ public int getAccidentTwo() {
+ return accidentTwo;
+ }
+
+ public void setAccidentTwo(int accidentTwo) {
+ this.accidentTwo = accidentTwo;
+ }
+
+ public int getAccidentThree() {
+ return accidentThree;
+ }
+
+ public void setAccidentThree(int accidentThree) {
+ this.accidentThree = accidentThree;
+ }
+
+ public int getAccidentFour() {
+ return accidentFour;
+ }
+
+ public void setAccidentFour(int accidentFour) {
+ this.accidentFour = accidentFour;
+ }
+
+ public int getAccidentTotal() {
+ return accidentTotal;
+ }
+
+ public void setAccidentTotal(int accidentTotal) {
+ this.accidentTotal = accidentTotal;
+ }
+}
--
Gitblit v1.9.2