From 7d098b8c03c2a3f2dc7b51f73cc8d16b56dfa764 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Tue, 18 May 2021 16:44:41 +0800 Subject: [PATCH] 20210518 订单 --- README.md | 194 +++++++++++++++++++++++++++++++++++++++++------ 1 files changed, 167 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index 95ac041..1b6d6a4 100644 --- a/README.md +++ b/README.md @@ -1,39 +1,179 @@ -# new_excoin_manage +### 编辑器记得安装lombok插件 -#### 介绍 -{**以下是码云平台说明,您可以替换此简介** -码云是 OSCHINA 推出的基于 Git 的代码托管平台(同时支持 SVN)。专为开发者提供稳定、高效、安全的云端软件开发协作平台 -无论是个人、团队、或是企业,都能够用码云实现代码托管、项目管理、协作开发。企业项目请看 [https://gitee.com/enterprises](https://gitee.com/enterprises)} +### FEBS-Shiro 2.0 + + + + -#### 软件架构 -软件架构说明 +FEBS-Shiro是一款简单高效的后台权限管理系统,使用Spring Boot,Shiro和Layui构建。FEBS意指:**F**ast,**E**asy use,**B**eautiful和**S**afe。相信无论作为企业级应用,私活开发脚手架或者权限系统构建学习,FEBS-Shiro都会是一个不错的选择。 + +### 演示地址 + +[http://47.104.70.138:8080](http://47.104.70.138:8080/login) + +演示环境账号密码: + +账号 | 密码| 权限 +---|---|--- +scott | 1234qwer | 注册账户,拥有查看,新增权限(新增用户除外)和导出Excel权限 -#### 安装教程 +本地部署账号密码: -1. xxxx -2. xxxx -3. xxxx +账号 | 密码| 权限 +---|---|--- +mrbird | 1234qwer |超级管理员,拥有所有增删改查权限 +scott | 1234qwer | 注册账户,拥有查看,新增权限(新增用户除外)和导出Excel权限 +micaela | 1234qwer |系统监测员,负责整个系统监控模块 +Jana | 1234qwer |跑批人员,负责任务调度跑批模块 -#### 使用说明 +### 更多版本 +当前分支为2.0版本,页面采用Layui全新构建,FEBS的其他版本: -1. xxxx -2. xxxx -3. xxxx +名称 | 描述| 地址 +---|---|--- +FEBS-Shiro 1.x | Spring Boot 2.0.4 & Shiro1.4.2 权限管理系统(单页)。 | [https://github.com/wuyouzhuguli/FEBS-Shiro/tree/mysql](https://github.com/wuyouzhuguli/FEBS-Shiro/tree/mysql) +FEBS-Security | Spring Boot 2.0.4 & Spring Security 5.0.7 权限管理系统(单页)。 | [https://github.com/wuyouzhuguli/FEBS-Security](https://github.com/wuyouzhuguli/FEBS-Security) +FEBS-Vue | FEBS-Shiro前后端分离版本,前端架构采用Vue全家桶。 | [https://github.com/wuyouzhuguli/FEBS-Vue](https://github.com/wuyouzhuguli/FEBS-Vue) +FEBS-Cloud | 基于Spring Cloud的微服务权限系统 | [https://github.com/wuyouzhuguli/FEBS-Cloud](https://github.com/wuyouzhuguli/FEBS-Cloud) -#### 参与贡献 +### 系统模块 +系统功能模块组成如下所示: +``` +├─系统管理 +│ ├─用户管理 +│ ├─角色管理 +│ ├─菜单管理 +│ └─部门管理 +├─系统监控 +│ ├─在线用户 +│ ├─系统日志 +│ ├─登录日志 +│ ├─请求追踪 +│ ├─系统信息 +│ │ ├─JVM信息 +│ │ ├─TOMCAT信息 +│ │ └─服务器信息 +├─任务调度 +│ ├─定时任务 +│ └─调度日志 +├─代码生成 +│ ├─生成配置 +│ ├─代码生成 +└─其他模块 + ├─FEBS组件 + │ ├─表单组件 + │ ├─表单组合 + │ ├─FEBS工具 + │ ├─系统图标 + │ └─其他组件 + ├─APEX图表 + ├─高德地图 + └─导入导出 +``` +### 系统特点 -1. Fork 本仓库 -2. 新建 Feat_xxx 分支 -3. 提交代码 -4. 新建 Pull Request +1. 前后端请求参数校验 +2. 支持Excel导入导出 -#### 码云特技 +3. 前端页面布局多样化,主题多样化 -1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md -2. 码云官方博客 [blog.gitee.com](https://blog.gitee.com) -3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解码云上的优秀开源项目 -4. [GVP](https://gitee.com/gvp) 全称是码云最有价值开源项目,是码云综合评定出的优秀开源项目 -5. 码云官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help) -6. 码云封面人物是一档用来展示码云会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/) +4. 支持多数据源,代码生成 + +5. 多Tab页面,适合企业应用 + +6. 用户权限动态刷新 + +7. 浏览器兼容性好,页面支持PC,Pad和移动端。 + +8. 代码简单,结构清晰 + +### 技术选型 + +#### 后端 +- [Spring Boot 2.2.1](http://spring.io/projects/spring-boot/) +- [Mybatis-Plus](https://mp.baomidou.com/guide/) +- [MySQL 5.7.x](https://dev.mysql.com/downloads/mysql/5.7.html#downloads),[Hikari](https://brettwooldridge.github.io/HikariCP/),[Redis](https://redis.io/) +- [Shiro 1.4.2](http://shiro.apache.org/) + +#### 前端 +- [Layui 2.5.5](https://www.layui.com/) +- [Nepadmin](https://gitee.com/june000/nep-admin) +- [formSelects 4.x 多选框](https://hnzzmsf.github.io/example/example_v4.html) +- [eleTree 树组件](https://layuiextend.hsianglee.cn/eletree/) +- [formSelect.js树形下拉](https://wujiawei0926.gitee.io/treeselect/docs/doc.html) +- [Apexcharts图表](https://apexcharts.com/) + +### 系统截图 + +#### PC端 + + + + + + + +#### 手机 + + +#### Pad + + + +### 浏览器兼容 +|[<img src="https://raw.github.com/alrra/browser-logos/master/src/archive/internet-explorer_9-11/internet-explorer_9-11_48x48.png" alt="Edge" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>IE| [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/edge/edge_48x48.png" alt="Edge" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Edge | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/firefox/firefox_48x48.png" alt="Firefox" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Firefox | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/chrome/chrome_48x48.png" alt="Chrome" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Chrome | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/safari/safari_48x48.png" alt="Safari" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Safari |[<img src="https://raw.github.com/alrra/browser-logos/master/src/opera/opera_48x48.png" alt="Edge" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Opera +| --------- | --------- | --------- | --------- | --------- |--------- | +|IE 10+| Edge| last 15 versions| last 15 versions| last 10 versions| last 15 versions +### 参与贡献 +欢迎提交PR一起完善项目,以下为提PR并合并的小伙伴(排名不分先后): + +<a href="https://github.com/everhopingandwaiting"> + <img src="https://avatars3.githubusercontent.com/u/6021724?s=400&v=4" width="45px"></a> +<a href="https://github.com/mgzu"> + <img src="https://avatars1.githubusercontent.com/u/29629221?s=400&v=4" width="45px"></a> +<a href="https://github.com/yuuki80code"> + <img src="https://avatars0.githubusercontent.com/u/17798853?s=400&v=4" width="45px"></a> +<a href="https://github.com/cinsin"> + <img src="https://avatars1.githubusercontent.com/u/12856067?s=400&v=4" width="45px"></a> +<a href="https://github.com/Minnull"> + <img src="https://avatars2.githubusercontent.com/u/19608781?s=400&v=4" width="45px"></a> +<a href="https://github.com/Harrison0x80"> + <img src="https://avatars2.githubusercontent.com/u/8622915?s=400&v=4" width="45px"></a> +<a href="https://github.com/notlcry"> + <img src="https://avatars2.githubusercontent.com/u/1989218?s=400&v=4" width="45px"></a> +<a href="https://github.com/gelibo"> + <img src="https://avatars1.githubusercontent.com/u/14520562?s=400&v=4" width="45px"></a> +<a href="https://github.com/FiseTch"> + <img src="https://avatars0.githubusercontent.com/u/29654322?s=400&v=4" width="45px"></a> +<a href="https://github.com/pangPython"> + <img src="https://avatars3.githubusercontent.com/u/12680677?s=400&v=4" width="45px"></a> +<a href="https://github.com/atsushinee"> + <img src="https://avatars2.githubusercontent.com/u/26084189?s=400&v=4" width="45px"></a> +<a href="https://github.com/liuzhuoming23"> + <img src="https://avatars1.githubusercontent.com/u/41719224?s=400&v=4" width="45px"></a> +<a href="https://github.com/yqmmm"> + <img src="https://avatars2.githubusercontent.com/u/38187913?s=400&v=4" width="45px"></a> +<a href="https://github.com/wtune"> + <img src="https://avatars1.githubusercontent.com/u/59522871?s=400&v=4" width="45px"></a> +<a href="https://github.com/robinliu2827"> + <img src="https://avatars2.githubusercontent.com/u/46709292?s=400&v=4" width="45px"></a> + +### 反馈交流 + +加入QQ群和大家一起~~交流~~吹水: + + + +### 特别赞助 + +<a href="https://www.jetbrains.com/?from=FEBS Shiro"> + <img src="screenshot/jetbrains.png" width="100px"></a> + +### 支持作者 +如果该系统对您有帮助的话,请作者喝杯肥宅水吧🍺~ + + + -- Gitblit v1.9.1