From a21a0e10125ed65a81380ffd8e1054b618ec3fb6 Mon Sep 17 00:00:00 2001 From: buaixuexideshitongxue <2936013465@qq.com> Date: Fri, 6 Feb 2026 19:02:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=9A=E5=8A=A1=E6=95=B0=E6=8D=AE--=E6=96=B9?= =?UTF-8?q?=E6=B3=95DTO?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pojo/dto/businessPolice/ZfbaAggDTO.java | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/main/java/com/biutag/supervision/pojo/dto/businessPolice/ZfbaAggDTO.java diff --git a/src/main/java/com/biutag/supervision/pojo/dto/businessPolice/ZfbaAggDTO.java b/src/main/java/com/biutag/supervision/pojo/dto/businessPolice/ZfbaAggDTO.java new file mode 100644 index 0000000..abd4e56 --- /dev/null +++ b/src/main/java/com/biutag/supervision/pojo/dto/businessPolice/ZfbaAggDTO.java @@ -0,0 +1,27 @@ +package com.biutag.supervision.pojo.dto.businessPolice; + +import com.biutag.supervision.pojo.entity.GBaseAJJBXX; +import io.swagger.v3.oas.annotations.media.Schema; +import lombok.Getter; +import lombok.Setter; + +import java.util.List; + +@Getter +@Setter +@Schema(description = "执法办案按天聚合 DTO(受/立/破)") +public class ZfbaAggDTO { + + @Schema(description = "类型:4=受案,5=立案,6=破案") + private Integer type; + + @Schema(description = "聚合后的办案人数据(按天+办案人ID聚合)") + private List list; + + public static ZfbaAggDTO of(Integer type, List list) { + ZfbaAggDTO dto = new ZfbaAggDTO(); + dto.setType(type); + dto.setList(list); + return dto; + } +}