From a4047b6048ebfe09e66a765b58ea12b5bd0e2e6e Mon Sep 17 00:00:00 2001
From: zhanghua <314079846@qq.com>
Date: 星期一, 28 十一月 2022 16:18:10 +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