|
@@ -20,7 +20,7 @@ public class BaseBean implements Serializable
|
|
|
@Schema(description = "创建人")
|
|
@Schema(description = "创建人")
|
|
|
private String createBy;
|
|
private String createBy;
|
|
|
|
|
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
|
|
|
+ @JsonFormat(timezone="GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
@Schema(description = "创建时间")
|
|
@Schema(description = "创建时间")
|
|
|
private Date createTime;
|
|
private Date createTime;
|
|
|
|
|
|
|
@@ -29,7 +29,7 @@ public class BaseBean implements Serializable
|
|
|
private String updateBy;
|
|
private String updateBy;
|
|
|
|
|
|
|
|
/** 更新时间 */
|
|
/** 更新时间 */
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
|
|
|
+ @JsonFormat(timezone="GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
@Schema(description = "更新时间")
|
|
@Schema(description = "更新时间")
|
|
|
private Date updateTime;
|
|
private Date updateTime;
|
|
|
|
|
|