From 6b0c99943f1ae73a55f54a721473b7cc8ddd1c24 Mon Sep 17 00:00:00 2001
From: wl <173@qq.com>
Date: 星期三, 26 十月 2022 14:13:18 +0800
Subject: [PATCH] 我的待办处置人查询 上传处置重构
---
ycl-platform/src/main/java/com/ycl/dto/caseHandler/DispatchInfoParam.java | 8 +++++++-
1 files changed, 7 insertions(+), 1 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..f642980 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,6 @@
@ApiModelProperty(value = "娲鹃仯鎰忚")
private Long createUser;
+
+
}
--
Gitblit v1.8.0