From d40a69e7d455c12e32201330a9fbe22a7b6b4b5d Mon Sep 17 00:00:00 2001
From: wl <173@qq.com>
Date: 星期四, 29 十二月 2022 14:44:45 +0800
Subject: [PATCH] fix: 获取部门树为启用的
---
ycl-platform/src/main/java/com/ycl/dto/caseHandler/DispatchInfoParam.java | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/ycl-platform/src/main/java/com/ycl/dto/caseHandler/DispatchInfoParam.java b/ycl-platform/src/main/java/com/ycl/dto/caseHandler/DispatchInfoParam.java
index fa0b0fe..26e67e5 100644
--- a/ycl-platform/src/main/java/com/ycl/dto/caseHandler/DispatchInfoParam.java
+++ b/ycl-platform/src/main/java/com/ycl/dto/caseHandler/DispatchInfoParam.java
@@ -1,8 +1,11 @@
package com.ycl.dto.caseHandler;
+import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
+
+import java.time.LocalDateTime;
/**
* DispatchParam
@@ -55,7 +58,8 @@
* 澶勭疆鏃ユ湡
*/
@ApiModelProperty(value = "澶勭疆鏃ユ湡")
- private String disposeDate;
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
+ private LocalDateTime disposeDate;
/**
* 娲鹃仯鎰忚
*/
@@ -68,4 +72,4 @@
@ApiModelProperty(value = "娲鹃仯鎰忚")
private Long createUser;
-}
+}
\ No newline at end of file
--
Gitblit v1.8.0