From 0414ddb0b2b3a7199ae6181a770f97ac140dbd73 Mon Sep 17 00:00:00 2001 From: zhangf <1603559716@qq.com> Date: 星期三, 08 五月 2024 16:46:22 +0800 Subject: [PATCH] spi统计 --- incident-manage/incident-manage-rpc-api/src/main/java/com/gkhy/safePlatform/incidentManage/rpc/api/model/dto/resp/AccidentCountByGradeRPCRespDTO.java | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 50 insertions(+), 0 deletions(-) diff --git a/incident-manage/incident-manage-rpc-api/src/main/java/com/gkhy/safePlatform/incidentManage/rpc/api/model/dto/resp/AccidentCountByGradeRPCRespDTO.java b/incident-manage/incident-manage-rpc-api/src/main/java/com/gkhy/safePlatform/incidentManage/rpc/api/model/dto/resp/AccidentCountByGradeRPCRespDTO.java new file mode 100644 index 0000000..2f4fda8 --- /dev/null +++ b/incident-manage/incident-manage-rpc-api/src/main/java/com/gkhy/safePlatform/incidentManage/rpc/api/model/dto/resp/AccidentCountByGradeRPCRespDTO.java @@ -0,0 +1,50 @@ +package com.gkhy.safePlatform.incidentManage.rpc.api.model.dto.resp; + + +public class AccidentCountByGradeRPCRespDTO { + 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