From 8219cdfcb825b6d75c3a235a7e5195c8cac9a2ea Mon Sep 17 00:00:00 2001 From: songhuangfeng123 <shf18767906695@163.com> Date: 星期二, 06 九月 2022 11:32:14 +0800 Subject: [PATCH] 统计接口rpc --- incident-manage/incident-manage-rpc-api/src/main/java/com/gkhy/safePlatform/incidentManage/rpc/api/model/dto/resp/IncidentManageCountRPCResp.java | 30 ++++++++++++++++++++++++++++++ 1 files changed, 30 insertions(+), 0 deletions(-) diff --git a/incident-manage/incident-manage-rpc-api/src/main/java/com/gkhy/safePlatform/incidentManage/rpc/api/model/dto/resp/IncidentManageCountRPCResp.java b/incident-manage/incident-manage-rpc-api/src/main/java/com/gkhy/safePlatform/incidentManage/rpc/api/model/dto/resp/IncidentManageCountRPCResp.java new file mode 100644 index 0000000..3a2004b --- /dev/null +++ b/incident-manage/incident-manage-rpc-api/src/main/java/com/gkhy/safePlatform/incidentManage/rpc/api/model/dto/resp/IncidentManageCountRPCResp.java @@ -0,0 +1,30 @@ +package com.gkhy.safePlatform.incidentManage.rpc.api.model.dto.resp; + + +import java.util.List; +import java.util.Map; + +public class IncidentManageCountRPCResp { + + // 时间 如果查的是年,返回的是月份 ,如果查的是月,返回的是天 + private Integer time ; + + // 数据 + private List<IncidentManageCountDetailRPCResp> detail; + + public Integer getTime() { + return time; + } + + public void setTime(Integer time) { + this.time = time; + } + + public List<IncidentManageCountDetailRPCResp> getDetail() { + return detail; + } + + public void setDetail(List<IncidentManageCountDetailRPCResp> detail) { + this.detail = detail; + } +} -- Gitblit v1.9.2