|
@@ -1,5 +1,6 @@
|
|
|
package com.om.entity.vo;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
import lombok.NoArgsConstructor;
|
|
@@ -31,6 +32,7 @@ public class AppVO {
|
|
|
private String[] language;
|
|
|
|
|
|
@ApiModelProperty(value = "发布时间")
|
|
|
+ @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
|
|
|
private LocalDateTime releaseTime;
|
|
|
|
|
|
@ApiModelProperty(value = "保存路径")
|
|
@@ -46,9 +48,11 @@ public class AppVO {
|
|
|
private String versionNum;
|
|
|
|
|
|
@ApiModelProperty(value = "更新时间")
|
|
|
+ @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
|
|
|
private LocalDateTime updateTime;
|
|
|
|
|
|
@ApiModelProperty(value = "创建时间")
|
|
|
+ @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
|
|
|
private LocalDateTime createTime;
|
|
|
|
|
|
}
|