diff --git a/ReadMe.md b/ReadMe.md
index 99e56c9..b5471c5 100644
--- a/ReadMe.md
+++ b/ReadMe.md
@@ -1,7 +1,218 @@
+Github地址
+
+- [前端地址](https://github.com/BunnyMaster/bunny-admin-web.git)
+- [后端地址](https://github.com/BunnyMaster/bunny-admin-server)
+
+Gitee地址
+
+- [前端地址](https://gitee.com/BunnyBoss/bunny-admin-web)
+- [后端地址](https://gitee.com/BunnyBoss/bunny-admin-server)
+
+# 功能介绍
+
+系统使用的是物理删除,但是引用了逻辑删除,使用mybatisPlus如果需要逻辑删除只需要将原先删除方法调用成mybatisplus自身的删除方法即可。
+
+作为权限管理系统,校验功能已经路由功能都是由后端完成,后端使用SpringSecurity
+
+系统权限功能使用RBAC模型
+
+## 系统设置
+
+### 系统菜单
+
+当用户登录时会根据,当前角色获取自身的菜单路由,防止返回不该返回的页面,之后权限和角色关联,根据用户权限查询可以访问的菜单内容,如果权限中没有这个路径那么会告知`无权访问`。
+
+管理员需要在配置时,配置菜单和角色之间的关系,用户也要和角色关联,角色会关联权限表,返回路由时只返回当前用户可以访问的菜单。
+
+- 前端做递归,排序后端也做了
+- 快捷排序,快捷禁用菜单
+- 路由菜单图标需要再系统配置中添加菜单图标
+
+
+
+为菜单分配角色
+
+
+
+### 用户管理
+
+强制下线就是将Redis中用户信息删除
+
+用户禁用先改数据库之后将Redis中数据进行删除
+
+
+
+#### 关于用户管理事务问题
+
+如果用户禁用失败或者删除Redis失败需要回滚事务,在Spring中,有集成的事务,只需要简单的配置下即可,
+
+### 角色管理
+
+
+
+### 权限管理
+
+权限管理可以设置父级内容,在前端文件中有`data.js`,可以自动生成权限相关内容。
+
+
+
+**前端文件**
+
+
+
+### 部门管理
+
+
+
+## 系统配置
+
+### 菜单图标
+
+
+
+### 邮件用户配置
+
+发送邮件时,如果没有选定用户会去找默认用户,如果默认用户也没有会报错。
+
+
+
+### 邮件模板
+
+邮箱验证码,
+
+
+
+#### 模板类型说明
+
+根据后端的枚举类进行返回
+
+
+
+后端文件
+
+
+
+## 系统监控
+
+### 服务监控
+
+服务监控来自springboot中actuator框架
+
+
+
+IDEA中也有集成只要使用了actuator包即可看到服务内容、健康检查等
+
+详细参考官网API,当然如果需要后台服监控页面,德国工程师帮我们写了一个页面。
+
+
+
+也可以看到当前的请求API有哪些
+
+
+
+#### 相关admin服务包
+
+或许在有些服务中不需要这个页面,有服务监控的功能,配置也简单,我之前我使用在这个项目中,和部分业务功能有些冲突,与其这样不如自己写个简单的也可以
+
+```xml
+
+
+ de.codecentric
+ spring-boot-admin-starter-server
+ 3.3.4
+
+
+de.codecentric
+spring-boot-admin-starter-client
+3.2.3
+
+```
+
+### 后台文件管理
+
+用户上传的文件和头像内容都在这里,文件存储位置在Minio中
+
+
+
+### 用户登录日志
+
+
+
+### 任务执行日志
+
+当前设定的定时任务有关,目前有数据库备份,和简单的定时任务示例内容都在这,使用JS对象可视化,数据多时会有些卡顿
+
+
+
+## 定时任务
+
+### 调度任务
+
+其实就是定时任务,集成框架quartz,持久化存储任务
+
+
+
+### 任务调度分组
+
+
+
+## 多语言管理
+
+### 多语言
+
+
+
+### 多语言类型
+
+如果以后还需要其它语言可以在这个地方添加
+
+
+
+## 其它功能
+
+
+
+### 账户设置
+
+
+
+
+
+
+
+### 数据库事务
+
+数据库事务在Springboot中只需要一个注解,通常我们还需要redis事务,在Redis中配置开启即可。
+
+
+
+### 去除字符串空格
+
+在项目中,会统一进行空白字符串去除,配置项也在config文件夹下
+
+
+
+> 更多配置看这里
+>
+> 
+
# Docker配置详情
如果想更改端口号,前面的对外访问的端口号,后面是容器也就是服务本身端口号

项目本身端口号
-
\ No newline at end of file
+
+
+部署命令
+
+```bash
+docker build -f Dockerfile -t bunny_auth_web:1.0.0 . && docker run -p 80:80 --name bunny_auth_web --restart always bunny_auth_web:1.0.0
+```
+
+# 展望未来
+
+1. 数据库备份时上传到Minio
+2. 数据库备份后可恢复
+3. 定时邮件发送参数可在前端配置,动态形式
+4. 首页看板内容
\ No newline at end of file
diff --git a/images/image-20241023090359575.png b/images/image-20241023090359575.png
new file mode 100644
index 0000000..fd14166
Binary files /dev/null and b/images/image-20241023090359575.png differ
diff --git a/images/image-20241023090640516.png b/images/image-20241023090640516.png
new file mode 100644
index 0000000..fe73c0a
Binary files /dev/null and b/images/image-20241023090640516.png differ
diff --git a/images/image-20241023091239212.png b/images/image-20241023091239212.png
new file mode 100644
index 0000000..f496c04
Binary files /dev/null and b/images/image-20241023091239212.png differ
diff --git a/images/image-20241023091310533.png b/images/image-20241023091310533.png
new file mode 100644
index 0000000..b939571
Binary files /dev/null and b/images/image-20241023091310533.png differ
diff --git a/images/image-20241023091328271.png b/images/image-20241023091328271.png
new file mode 100644
index 0000000..deeb309
Binary files /dev/null and b/images/image-20241023091328271.png differ
diff --git a/images/image-20241023091503966.png b/images/image-20241023091503966.png
new file mode 100644
index 0000000..f316544
Binary files /dev/null and b/images/image-20241023091503966.png differ
diff --git a/images/image-20241023092027273.png b/images/image-20241023092027273.png
new file mode 100644
index 0000000..c49d9c3
Binary files /dev/null and b/images/image-20241023092027273.png differ
diff --git a/images/image-20241023092123926.png b/images/image-20241023092123926.png
new file mode 100644
index 0000000..3716761
Binary files /dev/null and b/images/image-20241023092123926.png differ
diff --git a/images/image-20241023092145274.png b/images/image-20241023092145274.png
new file mode 100644
index 0000000..ef659d7
Binary files /dev/null and b/images/image-20241023092145274.png differ
diff --git a/images/image-20241023092250382.png b/images/image-20241023092250382.png
new file mode 100644
index 0000000..a4862ce
Binary files /dev/null and b/images/image-20241023092250382.png differ
diff --git a/images/image-20241023092355799.png b/images/image-20241023092355799.png
new file mode 100644
index 0000000..069bc3f
Binary files /dev/null and b/images/image-20241023092355799.png differ
diff --git a/images/image-20241023092439168.png b/images/image-20241023092439168.png
new file mode 100644
index 0000000..fda75ff
Binary files /dev/null and b/images/image-20241023092439168.png differ
diff --git a/images/image-20241023092520931.png b/images/image-20241023092520931.png
new file mode 100644
index 0000000..11fd9ef
Binary files /dev/null and b/images/image-20241023092520931.png differ
diff --git a/images/image-20241023092652996.png b/images/image-20241023092652996.png
new file mode 100644
index 0000000..23c1a79
Binary files /dev/null and b/images/image-20241023092652996.png differ
diff --git a/images/image-20241023093159928.png b/images/image-20241023093159928.png
new file mode 100644
index 0000000..28c25c7
Binary files /dev/null and b/images/image-20241023093159928.png differ
diff --git a/images/image-20241023093247261.png b/images/image-20241023093247261.png
new file mode 100644
index 0000000..3fd2936
Binary files /dev/null and b/images/image-20241023093247261.png differ
diff --git a/images/image-20241023093317701.png b/images/image-20241023093317701.png
new file mode 100644
index 0000000..dfadc3f
Binary files /dev/null and b/images/image-20241023093317701.png differ
diff --git a/images/image-20241023093407627.png b/images/image-20241023093407627.png
new file mode 100644
index 0000000..db6731b
Binary files /dev/null and b/images/image-20241023093407627.png differ
diff --git a/images/image-20241023093546293.png b/images/image-20241023093546293.png
new file mode 100644
index 0000000..ef2c082
Binary files /dev/null and b/images/image-20241023093546293.png differ
diff --git a/images/image-20241023093602223.png b/images/image-20241023093602223.png
new file mode 100644
index 0000000..452da79
Binary files /dev/null and b/images/image-20241023093602223.png differ
diff --git a/images/image-20241023093639866.png b/images/image-20241023093639866.png
new file mode 100644
index 0000000..90ee5b5
Binary files /dev/null and b/images/image-20241023093639866.png differ
diff --git a/images/image-20241023093654135.png b/images/image-20241023093654135.png
new file mode 100644
index 0000000..46b1710
Binary files /dev/null and b/images/image-20241023093654135.png differ
diff --git a/images/image-20241023093729543.png b/images/image-20241023093729543.png
new file mode 100644
index 0000000..f0e0bc1
Binary files /dev/null and b/images/image-20241023093729543.png differ
diff --git a/images/image-20241023093749870.png b/images/image-20241023093749870.png
new file mode 100644
index 0000000..11df91d
Binary files /dev/null and b/images/image-20241023093749870.png differ
diff --git a/images/image-20241023093759347.png b/images/image-20241023093759347.png
new file mode 100644
index 0000000..4d76a4a
Binary files /dev/null and b/images/image-20241023093759347.png differ
diff --git a/images/image-20241023093807425.png b/images/image-20241023093807425.png
new file mode 100644
index 0000000..5b14f9c
Binary files /dev/null and b/images/image-20241023093807425.png differ
diff --git a/images/image-20241023094104297.png b/images/image-20241023094104297.png
new file mode 100644
index 0000000..582c6c5
Binary files /dev/null and b/images/image-20241023094104297.png differ
diff --git a/images/image-20241023094247311.png b/images/image-20241023094247311.png
new file mode 100644
index 0000000..582c6c5
Binary files /dev/null and b/images/image-20241023094247311.png differ
diff --git a/images/image-20241023094311326.png b/images/image-20241023094311326.png
new file mode 100644
index 0000000..81c4074
Binary files /dev/null and b/images/image-20241023094311326.png differ