|
|
@@ -1,5 +1,6 @@
|
|
|
package com.ruoyi.business.domain.vo;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
import lombok.Data;
|
|
|
|
|
|
@@ -58,11 +59,13 @@ public class BjPortReportVo implements Serializable {
|
|
|
/**
|
|
|
* 抵离港时间
|
|
|
*/
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date endDate;
|
|
|
|
|
|
/**
|
|
|
* 上一经过港
|
|
|
*/
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private String lastHarbor;
|
|
|
|
|
|
/**
|
|
|
@@ -73,11 +76,13 @@ public class BjPortReportVo implements Serializable {
|
|
|
/**
|
|
|
* 申报时间
|
|
|
*/
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date declareDate;
|
|
|
|
|
|
/**
|
|
|
* 发布时间
|
|
|
*/
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date releaseDate;
|
|
|
|
|
|
/**
|