From 78f9ceae97fbc9a24159960de8307a4a86a53d16 Mon Sep 17 00:00:00 2001 From: buaixuexideshitongxue <2936013465@qq.com> Date: Tue, 7 Apr 2026 14:59:25 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E7=AB=8B=E5=8D=B3=E5=A4=84=E7=90=86?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E8=BF=94=E5=9B=9E=E5=88=9D=E6=A0=B8=E6=83=85?= =?UTF-8?q?=E5=86=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../supervision/pojo/domain/NegativeVo.java | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/src/main/java/com/biutag/supervision/pojo/domain/NegativeVo.java b/src/main/java/com/biutag/supervision/pojo/domain/NegativeVo.java index c4d3d61..1754352 100644 --- a/src/main/java/com/biutag/supervision/pojo/domain/NegativeVo.java +++ b/src/main/java/com/biutag/supervision/pojo/domain/NegativeVo.java @@ -6,6 +6,7 @@ import com.biutag.supervision.pojo.entity.NegativeScorePolice; import com.biutag.supervision.pojo.entity.NegativeThingFile; import com.biutag.supervision.pojo.vo.NegativeFileVo; import com.fasterxml.jackson.annotation.JsonFormat; +import io.swagger.v3.oas.annotations.media.Schema; import lombok.Getter; import lombok.Setter; @@ -264,4 +265,33 @@ public class NegativeVo { // 经办人 private List handlePolices = new ArrayList<>(); + + /** + * @see com.biutag.supervision.pojo.enums.negative.NegativeSourceTypeEnum + */ + @Schema(description = "来源类型") + private String sourceType; + + /** + * @see com.biutag.supervision.pojo.enums.negative.NegativeSourceTypeEnum + */ + @Schema(description = "来源类型名称") + private String sourceTypeDesc; + + @Schema(description = "下发单位id") + private String issuingDepartId; + + @Schema(description = "下发单位名字") + private String issuingDepartName; + + @Schema(description = "最后一次审批节点操作时间") + private LocalDateTime latestProcessTime; + + @Schema(description = "2级审批累计时长(秒)") + private Long secondApprovalTime; + + @Schema(description = "市局审批累计时长(秒)") + private Long firstApproveTime; + + }