diff --git a/README.md b/README.md
index d6f261f..5977e48 100644
--- a/README.md
+++ b/README.md
@@ -34,6 +34,12 @@
## 本项目与原项目的区别
+### 核心
+
+**模块化架构设计,支持各个模块的快速安拆,对第三方认证、第三方支付模块设计了基础的规范和基础模块。**
+
+### 细节
+
1. 改用SpringBoot3+java17的更新的技术栈
2. 升级了代码生成器(配合本项目的vue3版本才可用)
3. 改用最新版本的SpringSecurity安全框架,以及采用最新的lambda 表达式的配置方式
@@ -45,6 +51,8 @@
9. Excel中roundingMode方法BigDecimal.ROUND_HALF_EVEN改成RoundingMode.HALF_EVEN,用枚举代替常量
10. ReflectUtils中isAccessible在java9中被弃用,建议通过canAccess(null)来代替
+
+
## 模块介绍(简单开发必看)
* 最简单的开发就是删除所有的可移除模块,按需添加模块。
@@ -125,6 +133,25 @@ com.ruoyi
## 演示图
+### 新加功能和增强功能演示
+
+
+
+  |
+  |
+
+
+  |
+  |
+
+
+  |
+  |
+
+
+
+### 原有功能演示
+
 |
@@ -159,7 +186,3 @@ com.ruoyi
 |
-
-## 若依前后端分离交流群
-
-QQ群: [](https://jq.qq.com/?_wv=1027&k=5bVB1og) [](https://jq.qq.com/?_wv=1027&k=5eiA4DH) [](https://jq.qq.com/?_wv=1027&k=5AxMKlC) [](https://jq.qq.com/?_wv=1027&k=51G72yr) [](https://jq.qq.com/?_wv=1027&k=VvjN2nvu) [](https://jq.qq.com/?_wv=1027&k=5vYAqA05) [](https://jq.qq.com/?_wv=1027&k=kOIINEb5) [](https://jq.qq.com/?_wv=1027&k=UKtX5jhs) [](https://jq.qq.com/?_wv=1027&k=EI9an8lJ) [](https://jq.qq.com/?_wv=1027&k=SWCtLnMz) [](https://jq.qq.com/?_wv=1027&k=96Dkdq0k) [](https://jq.qq.com/?_wv=1027&k=0fsNiYZt) [](https://jq.qq.com/?_wv=1027&k=7xw4xUG1) [](https://jq.qq.com/?_wv=1027&k=eCx8eyoJ) [](https://jq.qq.com/?_wv=1027&k=SpyH2875) 点击按钮入群。
diff --git a/doc/image/code-edit.png b/doc/image/code-edit.png
new file mode 100644
index 0000000..5fc972b
Binary files /dev/null and b/doc/image/code-edit.png differ
diff --git a/doc/image/code-show.png b/doc/image/code-show.png
new file mode 100644
index 0000000..24378e8
Binary files /dev/null and b/doc/image/code-show.png differ
diff --git a/doc/image/form-edit.png b/doc/image/form-edit.png
new file mode 100644
index 0000000..4054d34
Binary files /dev/null and b/doc/image/form-edit.png differ
diff --git a/doc/image/online-mb-code.png b/doc/image/online-mb-code.png
new file mode 100644
index 0000000..45a4973
Binary files /dev/null and b/doc/image/online-mb-code.png differ
diff --git a/doc/image/online-mb-edit.png b/doc/image/online-mb-edit.png
new file mode 100644
index 0000000..6f3b378
Binary files /dev/null and b/doc/image/online-mb-edit.png differ
diff --git a/doc/image/online-mb-list.png b/doc/image/online-mb-list.png
new file mode 100644
index 0000000..0e1c032
Binary files /dev/null and b/doc/image/online-mb-list.png differ
diff --git a/ruoyi-online/src/main/resources/mapper/online/OnlineMbMapper.xml b/ruoyi-online/src/main/resources/mapper/online/OnlineMbMapper.xml
index 59fdb5d..9e3103c 100644
--- a/ruoyi-online/src/main/resources/mapper/online/OnlineMbMapper.xml
+++ b/ruoyi-online/src/main/resources/mapper/online/OnlineMbMapper.xml
@@ -8,17 +8,21 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
-
-
+
+
-
+
+
+
+
+
- select mb_id, tag, tag_id, parameterType, resultMap, `sql`, `path`, method, resultType, actuator from online_mb
+ select mb_id, tag, tag_id, parameter_type, result_map, `sql`, `path`, method, result_type, actuator,user_id,dept_id,permission_type,permission_value from online_mb
@@ -47,13 +55,17 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
mb_id,
tag,
tag_id,
- parameterType,
- resultMap,
- sql,
+ parameter_type,
+ result_map,
+ `sql`,
path,
method,
- resultType,
+ result_type,
actuator,
+ user_id,
+ dept_id,
+ permission_type,
+ permission_value,
#{mbId},
@@ -66,6 +78,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{method},
#{resultType},
#{actuator},
+ #{userId},
+ #{deptId},
+ #{permissionType},
+ #{permissionValue},
@@ -74,13 +90,17 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
tag = #{tag},
tag_id = #{tagId},
- parameterType = #{parameterType},
- resultMap = #{resultMap},
+ parameter_type = #{parameterType},
+ result_map = #{result_map},
`sql` = #{sql},
`path` = #{path},
method = #{method},
- resultType = #{resultType},
+ resul_type = #{resultType},
actuator = #{actuator},
+ user_id = #{userId},
+ dept_id = #{deptId},
+ permission_type = #{permissionType},
+ permission_value = #{permissionValue},
where online_mb.mb_id = #{mbId}