|
@@ -1,6 +1,8 @@
|
|
|
package com.idea.buildManage.vo;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import lombok.Data;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
@@ -17,6 +19,8 @@ public class ParkRoomNode {
|
|
|
|
|
|
private String customerManagementId;
|
|
|
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
private Date handleDate;
|
|
|
|
|
|
}
|