From cfea79a1876a8d0cb8a66b981ac9805b3655c9ec Mon Sep 17 00:00:00 2001 From: JEECG <445654970@qq.com> Date: Thu, 30 Oct 2025 22:26:55 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=8A=9F=E8=83=BD?= =?UTF-8?q?=E8=8F=9C=E5=8D=95=E2=80=9C=E7=B3=BB=E7=BB=9F=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E2=80=9D-=E2=80=9C=E9=83=A8=E9=97=A8=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E2=80=9D=EF=BC=8C=E7=94=A8=E6=88=B7=E5=88=97=E8=A1=A8=E4=B8=AD?= =?UTF-8?q?=EF=BC=8C=E7=BC=96=E8=BE=91=E7=94=A8=E6=88=B7=E7=95=8C=E9=9D=A2?= =?UTF-8?q?-=E7=94=A8=E6=88=B7=E8=B4=A6=E5=8F=B7=E4=B8=BA=E7=A9=BA=20#9032?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../jeecg/modules/system/model/SysUserSysDepPostModel.java | 7 +++++++ jeecgboot-vue3/src/views/system/depart/depart.data.ts | 7 ++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/model/SysUserSysDepPostModel.java b/jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/model/SysUserSysDepPostModel.java index f4e3f219a..d7a976564 100644 --- a/jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/model/SysUserSysDepPostModel.java +++ b/jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/model/SysUserSysDepPostModel.java @@ -21,6 +21,13 @@ public class SysUserSysDepPostModel { * 用户ID */ private String id; + + /** + * 登录账号 + */ + @Excel(name = "登录账号", width = 15) + private String username; + /* 真实姓名 */ private String realname; diff --git a/jeecgboot-vue3/src/views/system/depart/depart.data.ts b/jeecgboot-vue3/src/views/system/depart/depart.data.ts index 63cca3c30..0f3c83f14 100644 --- a/jeecgboot-vue3/src/views/system/depart/depart.data.ts +++ b/jeecgboot-vue3/src/views/system/depart/depart.data.ts @@ -172,6 +172,11 @@ export const orgCategoryOptions = { * 用户列表 */ export const userColumns: BasicColumn[] = [ + { + title: '用户账号', + dataIndex: 'username', + width: 120, + }, { title: '姓名', dataIndex: 'realname', @@ -208,4 +213,4 @@ export function positionChange(value, model, treeData) { } else { treeData.value = []; } -} \ No newline at end of file +} From aca407e1cef0c16818d642ee970c70184e6442bc Mon Sep 17 00:00:00 2001 From: JEECG <445654970@qq.com> Date: Fri, 31 Oct 2025 11:31:10 +0800 Subject: [PATCH 2/3] =?UTF-8?q?AI=E5=AE=9E=E6=88=98=E7=BC=96=E7=A8=8B?= =?UTF-8?q?=E6=95=99=E7=A8=8B=EF=BC=9AJEECG=E4=BD=8E=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E4=B8=8ECursor+GitHub=20Copilot=E5=AE=9E=E7=8E=B0AI=E9=AB=98?= =?UTF-8?q?=E6=95=88=E7=BC=96=E7=A8=8B=E5=AE=9E=E6=88=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 465ef50b9..92ea5258f 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,7 @@ JeecgBoot低代码平台兼容所有J2EE项目开发,支持信创国产化, - 官方网站: [http://www.jeecg.com](http://www.jeecg.com) - 在线演示: [平台演示](https://boot3.jeecg.com) | [APP演示](https://jeecg.com/appIndex) - 入门指南: [快速入门](http://www.jeecg.com/doc/quickstart) | [代码生成使用](https://help.jeecg.com/java/codegen/online) | [开发文档](https://help.jeecg.com) | [AI应用手册](https://help.jeecg.com/aigc) | [视频教程](http://jeecg.com/doc/video) +- AI编程实战视频: [JEECG低代码与Cursor+GitHub Copilot实现AI高效编程实战](https://www.bilibili.com/video/BV11XyaBVEoH) - 技术支持: [反馈问题](https://github.com/jeecgboot/JeecgBoot/issues/new?template=bug_report.md) | [低代码体验一分钟](https://jeecg.blog.csdn.net/article/details/106079007) - QQ交流群 : 964611995、⑩716488839(满)、⑨808791225(满)、其他(满) From d715c7a0ace9d8528cafbbe703338cc5c61b120a Mon Sep 17 00:00:00 2001 From: JEECG <445654970@qq.com> Date: Mon, 10 Nov 2025 15:54:36 +0800 Subject: [PATCH 3/3] =?UTF-8?q?rollup=E7=89=88=E6=9C=AC=E5=8F=B7=E5=9B=BA?= =?UTF-8?q?=E5=AE=9A4.52.5=EF=BC=8Crollup-plugin-visualizer=E5=9B=BA?= =?UTF-8?q?=E5=AE=9A5.14.0=EF=BC=8C=E5=AF=BC=E8=87=B4=E6=89=93=E5=8C=85?= =?UTF-8?q?=E5=A4=B1=E8=B4=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jeecgboot-vue3/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jeecgboot-vue3/package.json b/jeecgboot-vue3/package.json index e9676545d..14666bf9d 100644 --- a/jeecgboot-vue3/package.json +++ b/jeecgboot-vue3/package.json @@ -141,8 +141,8 @@ "prettier": "^3.4.2", "pretty-quick": "^4.0.0", "rimraf": "^5.0.10", - "rollup": "^4.30.0", - "rollup-plugin-visualizer": "^5.13.1", + "rollup": "4.52.5", + "rollup-plugin-visualizer": "5.14.0", "stylelint": "^16.12.0", "stylelint-config-prettier": "^9.0.5", "stylelint-config-recommended": "^14.0.1",