From 9d1a18030d8f82aa264d1378186eb00c31c9af20 Mon Sep 17 00:00:00 2001
From: 无关风月 <443237572@qq.com>
Date: 星期四, 25 九月 2025 09:36:47 +0800
Subject: [PATCH] 审批流程bug修改

---
 ruoyi-system/src/main/java/com/ruoyi/system/dto/AddOutDTO.java |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/dto/AddOutDTO.java b/ruoyi-system/src/main/java/com/ruoyi/system/dto/AddOutDTO.java
index 60d4f8c..a09f9aa 100644
--- a/ruoyi-system/src/main/java/com/ruoyi/system/dto/AddOutDTO.java
+++ b/ruoyi-system/src/main/java/com/ruoyi/system/dto/AddOutDTO.java
@@ -1,5 +1,6 @@
 package com.ruoyi.system.dto;
 
+import com.fasterxml.jackson.annotation.JsonFormat;
 import io.swagger.annotations.ApiModel;
 import io.swagger.annotations.ApiModelProperty;
 import lombok.Data;
@@ -12,9 +13,13 @@
 public class AddOutDTO implements Serializable {
 
     @ApiModelProperty(value = "开始请假/外出/出差/销假时间")
+    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
+
     private LocalDateTime startTime;
 
     @ApiModelProperty(value = "结束请假/外出/出差/销假时间")
+    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
+
     private LocalDateTime endTime;
 
     @ApiModelProperty(value = "请假/外出/出差/销假时长(天)")

--
Gitblit v1.7.1