From 7c90f5e8af8a70c480ddb5c7d1c2efa6f41148da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Sun, 12 Apr 2026 22:09:24 +0800 Subject: [PATCH] =?UTF-8?q?fix(system):=20=E4=BF=AE=E6=AD=A3=E7=99=BB?= =?UTF-8?q?=E5=BD=95=E8=AE=B0=E5=BD=95=E6=97=B6=E9=97=B4=E6=A0=BC=E5=BC=8F?= =?UTF-8?q?=E5=92=8C=E6=9B=B4=E6=96=B0=E4=B8=93=E5=AE=B6=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 为LoginRecord实体的createTime和updateTime字段添加时区配置GMT+8 - 更新.expert-history.json文件,新增高级开发工程师Will的专家信息 - 同步更新lastUpdated时间戳以反映最新变更 --- .workbuddy/expert-history.json | 13 ++++++++++++- .../gxwebsoft/common/system/entity/LoginRecord.java | 4 ++-- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.workbuddy/expert-history.json b/.workbuddy/expert-history.json index 998ac4a..dc1d944 100644 --- a/.workbuddy/expert-history.json +++ b/.workbuddy/expert-history.json @@ -22,7 +22,18 @@ "usedAt": 1776000797914, "industryId": "all" } + ], + "44c34a14b6dc4139b39ff61239e259ea": [ + { + "expertId": "SeniorDeveloper", + "name": "Will", + "profession": "高级开发工程师", + "avatarUrl": "https://acc-1258344699.cos.accelerate.myqcloud.com/workbuddy/experts/avatars/02-Engineering/SeniorDeveloper/SeniorDeveloper.png", + "promptUrl": "https://acc-1258344699.cos.accelerate.myqcloud.com/workbuddy/experts/experts/02-Engineering/SeniorDeveloper/SeniorDeveloper_zh.md", + "usedAt": 1776000797914, + "industryId": "all" + } ] }, - "lastUpdated": 1776000910040 + "lastUpdated": 1776002597201 } \ No newline at end of file diff --git a/src/main/java/com/gxwebsoft/common/system/entity/LoginRecord.java b/src/main/java/com/gxwebsoft/common/system/entity/LoginRecord.java index b516166..a03573a 100644 --- a/src/main/java/com/gxwebsoft/common/system/entity/LoginRecord.java +++ b/src/main/java/com/gxwebsoft/common/system/entity/LoginRecord.java @@ -58,11 +58,11 @@ public class LoginRecord implements Serializable { private Integer tenantId; @Schema(description = "操作时间") - @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private LocalDateTime createTime; @Schema(description = "修改时间") - @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private LocalDateTime updateTime; @Schema(description = "用户id")