|
@@ -1,5 +1,6 @@
|
|
|
package com.sxtvs.open.api.clue.dto;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import lombok.Data;
|
|
|
|
|
|
import java.time.LocalDate;
|
|
@@ -7,8 +8,10 @@ import java.time.LocalDateTime;
|
|
|
|
|
|
@Data
|
|
|
public class ClueDTO {
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
private LocalDateTime start;
|
|
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
private LocalDateTime end;
|
|
|
|
|
|
private String Title;
|