|
|
@@ -1,6 +1,8 @@
|
|
|
package com.sckw.contract.model.vo.res;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import lombok.Data;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
|
|
import java.io.Serial;
|
|
|
import java.io.Serializable;
|
|
|
@@ -81,6 +83,8 @@ public class LogisticsBaseInfoResVo implements Serializable {
|
|
|
/**
|
|
|
* 终止时间
|
|
|
*/
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
+ @JsonFormat(pattern="yyyy-MM-dd", timezone = "GMT+8")
|
|
|
private String endTime;
|
|
|
|
|
|
/**
|
|
|
@@ -96,6 +100,7 @@ public class LogisticsBaseInfoResVo implements Serializable {
|
|
|
/**
|
|
|
* 生效时间
|
|
|
*/
|
|
|
+ @JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd")
|
|
|
private Date startTime;
|
|
|
|
|
|
/**
|