|
|
@@ -5,6 +5,7 @@ import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
import lombok.Data;
|
|
|
|
|
|
import java.time.LocalDateTime;
|
|
|
+import java.time.format.DateTimeFormatter;
|
|
|
import java.util.List;
|
|
|
|
|
|
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
|
|
|
@@ -58,9 +59,10 @@ public class Kd100ExpressQueryRespDTO {
|
|
|
/**
|
|
|
* 轨迹发生时间
|
|
|
*/
|
|
|
+ @JsonProperty("time")
|
|
|
@JsonFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND, timezone = TIME_ZONE_DEFAULT)
|
|
|
+ @JsonDeserialize(using = LocalDateTimeDeserializer.class)
|
|
|
private LocalDateTime time;
|
|
|
-
|
|
|
/**
|
|
|
* 轨迹描述
|
|
|
*/
|