From 506505bb46f3dd8bb0ce00022f51ae026e3def8e 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 21:31:55 +0800 Subject: [PATCH] =?UTF-8?q?chore(config):=20=E6=9B=B4=E6=96=B0=E5=BC=80?= =?UTF-8?q?=E5=8F=91=E7=8E=AF=E5=A2=83=E6=95=B0=E6=8D=AE=E5=BA=93=E5=92=8C?= =?UTF-8?q?Redis=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将application.yml中的active profile由glt2改为dev - 更新application-dev.yml中的MySQL连接信息,包括url、用户名和密码 - 修改Redis服务器地址以匹配新的环境设置 - 添加新文件expert-history.json和MEMORY.md用于记录扩展历史和内存使用情况 --- .workbuddy/expert-history.json | 17 +++++++++++++++++ .workbuddy/memory/MEMORY.md | 0 .../shop/param/ShopDealerUserParam.java | 4 ++++ 3 files changed, 21 insertions(+) create mode 100644 .workbuddy/expert-history.json create mode 100644 .workbuddy/memory/MEMORY.md diff --git a/.workbuddy/expert-history.json b/.workbuddy/expert-history.json new file mode 100644 index 0000000..58cfef1 --- /dev/null +++ b/.workbuddy/expert-history.json @@ -0,0 +1,17 @@ +{ + "version": 2, + "sessions": { + "7759a9e57f984a0bb5af2ffd05be2f63": [ + { + "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": 1775972794982, + "industryId": "all" + } + ] + }, + "lastUpdated": 1776000634627 +} \ No newline at end of file diff --git a/.workbuddy/memory/MEMORY.md b/.workbuddy/memory/MEMORY.md new file mode 100644 index 0000000..e69de29 diff --git a/src/main/java/com/gxwebsoft/shop/param/ShopDealerUserParam.java b/src/main/java/com/gxwebsoft/shop/param/ShopDealerUserParam.java index 9953b1f..6003335 100644 --- a/src/main/java/com/gxwebsoft/shop/param/ShopDealerUserParam.java +++ b/src/main/java/com/gxwebsoft/shop/param/ShopDealerUserParam.java @@ -86,4 +86,8 @@ public class ShopDealerUserParam extends BaseParam { @QueryField(type = QueryType.EQ) private Integer isDelete; + @Schema(description = "分销商等级:0-普通用户 1-超级管理员 2-合伙人(总店) 3-合伙人(分店)") + @QueryField(type = QueryType.EQ) + private Integer dealerLevel; + }