Convert Figma logo to code with AI

YunaiV logoruoyi-vue-pro

🔥 官方推荐 🔥 RuoYi-Vue 全新 Pro 版本,优化重构所有功能。基于 Spring Boot + MyBatis Plus + Vue & Element 实现的后台管理系统 + 微信小程序,支持 RBAC 动态权限、数据权限、SaaS 多租户、Flowable 工作流、三方登录、支付、短信、商城、CRM、ERP、AI 大模型等功能。你的 ⭐️ Star ⭐️,是作者生发的动力!

26,627
5,650
26,627
12

Top Related Projects

:tada: A magical vue admin https://panjiachen.github.io/vue-element-admin

Vue3、Element Plus、typescript后台管理系统

Vue 2.0 admin management system template based on iView

A modern vue admin panel built with Vue3, Shadcn UI, Vite, TypeScript, and Monorepo. It's fast!

🎉 vue admin,vue3 admin,vue3.0 admin,vue后台管理,vue-admin,vue3.0-admin,admin,vue-admin,vue-element-admin,ant-design,vab admin pro,vab admin plus,vue admin plus,vue admin pro

mall-admin-web是一个电商后台管理系统的前端项目,基于Vue+Element实现。 主要包括商品管理、订单管理、会员管理、促销管理、运营管理、内容管理、统计报表、财务管理、权限管理、设置等功能。

Quick Overview

RuoYi-Vue-Pro is an open-source enterprise-level Java rapid development platform. It combines the RuoYi-Vue backend management framework with a microservices architecture, providing a comprehensive solution for building scalable and maintainable enterprise applications.

Pros

  • Comprehensive feature set, including user management, role-based access control, and system monitoring
  • Microservices architecture for improved scalability and maintainability
  • Extensive documentation and active community support
  • Integration with popular technologies like Spring Boot, MyBatis-Plus, and Vue.js

Cons

  • Steep learning curve for developers new to microservices architecture
  • Large codebase may be overwhelming for small projects
  • Some features may be overkill for simple applications
  • Requires significant setup and configuration for full functionality

Code Examples

  1. User registration example:
@PostMapping("/register")
public CommonResult<Long> register(@Valid @RequestBody UserRegisterReqVO reqVO) {
    Long userId = userService.createUser(reqVO);
    return success(userId);
}
  1. Role-based access control example:
@PreAuthorize("@ss.hasPermission('system:user:update')")
@PutMapping("/update")
public CommonResult<Boolean> updateUser(@Valid @RequestBody UserUpdateReqVO reqVO) {
    userService.updateUser(reqVO);
    return success(true);
}
  1. API request logging example:
@Around("@annotation(apiOperation)")
public Object around(ProceedingJoinPoint joinPoint, ApiOperation apiOperation) throws Throwable {
    // Log API request details
    ApiAccessLog accessLog = new ApiAccessLog();
    accessLog.setTraceId(TracerUtils.getTraceId());
    accessLog.setUserId(getLoginUserId());
    accessLog.setUserType(getUserType());
    accessLog.setApplicationName(applicationName);
    accessLog.setRequestUrl(request.getRequestURI());
    accessLog.setRequestParams(obtainRequestParams(joinPoint));
    // ... (more logging logic)
    
    // Proceed with the actual method execution
    Object result = joinPoint.proceed();
    
    // Log API response details
    accessLog.setResponseResult(JsonUtils.toJsonString(result));
    accessLog.setResultCode(CommonResult.isSuccess(result) ? GlobalErrorCodeConstants.SUCCESS.getCode() : GlobalErrorCodeConstants.INTERNAL_SERVER_ERROR.getCode());
    
    apiAccessLogFrameworkService.createApiAccessLog(accessLog);
    return result;
}

Getting Started

  1. Clone the repository:

    git clone https://github.com/YunaiV/ruoyi-vue-pro.git
    
  2. Set up the database and configure application.yaml with your database credentials.

  3. Build and run the project:

    mvn clean package
    java -jar yudao-server/target/yudao-server.jar
    
  4. Access the application at http://localhost:48080 and use the default credentials:

    • Username: admin
    • Password: admin123

For detailed setup instructions and configuration options, refer to the project's documentation.

Competitor Comparisons

:tada: A magical vue admin https://panjiachen.github.io/vue-element-admin

Pros of vue-element-admin

  • More comprehensive documentation and examples
  • Larger community and ecosystem
  • Flexible and customizable for various project types

Cons of vue-element-admin

  • Steeper learning curve for beginners
  • Less opinionated structure, requiring more decision-making
  • May require more setup time for complex projects

Code Comparison

vue-element-admin:

import Vue from 'vue'
import Router from 'vue-router'

Vue.use(Router)

export const constantRoutes = [
  {
    path: '/redirect',
    component: Layout,
    hidden: true,
    children: [
      {
        path: '/redirect/:path(.*)',
        component: () => import('@/views/redirect/index')
      }
    ]
  }
]

ruoyi-vue-pro:

import Vue from 'vue'
import Router from 'vue-router'
import { constantRoutes } from '@/router/routers'

Vue.use(Router)

export default new Router({
  mode: 'history',
  scrollBehavior: () => ({ y: 0 }),
  routes: constantRoutes
})

Both projects use Vue Router, but ruoyi-vue-pro has a more streamlined approach to route configuration. vue-element-admin offers more flexibility in route definition, while ruoyi-vue-pro provides a simpler structure that may be easier for beginners to understand and maintain.

Vue3、Element Plus、typescript后台管理系统

Pros of vue-manage-system

  • Simpler and more lightweight, making it easier to learn and customize
  • Focuses solely on the frontend, allowing more flexibility in backend choices
  • Includes a variety of pre-built components and charts for quick development

Cons of vue-manage-system

  • Less comprehensive than ruoyi-vue-pro, lacking built-in backend functionality
  • Fewer advanced features and integrations out of the box
  • May require more manual configuration for complex enterprise applications

Code Comparison

vue-manage-system (main.js):

import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
import installElementPlus from './plugins/element'

ruoyi-vue-pro (main.js):

import { createApp } from 'vue'
import App from './App.vue'
import store from './store'
import router from './router'
import directive from './directive'
import plugins from './plugins'

Both projects use Vue 3 and have similar main.js structures. However, ruoyi-vue-pro includes additional imports for custom directives and plugins, indicating a more feature-rich setup.

vue-manage-system is better suited for developers who prefer a lightweight, frontend-focused solution with more flexibility in backend choices. ruoyi-vue-pro offers a more comprehensive, full-stack approach with built-in backend functionality and advanced features, making it ideal for larger enterprise applications.

Vue 2.0 admin management system template based on iView

Pros of iview-admin

  • More comprehensive UI components and layouts
  • Better documentation and examples
  • Larger community and ecosystem

Cons of iview-admin

  • Less focus on backend integration
  • May require more customization for specific business needs
  • Steeper learning curve for developers new to iView

Code Comparison

iview-admin:

<template>
  <div class="layout">
    <Layout>
      <Sider hide-trigger :style="{background: '#fff'}">
        <Menu active-name="1" theme="light" width="auto" :open-names="['1']">

ruoyi-vue-pro:

<template>
  <div :class="classObj" class="app-wrapper">
    <div v-if="device==='mobile'&&sidebar.opened" class="drawer-bg" @click="handleClickOutside" />
    <sidebar class="sidebar-container" />

Both projects use Vue.js and provide admin templates, but iview-admin focuses more on UI components and layouts, while ruoyi-vue-pro offers a more integrated approach with backend services. iview-admin may be better suited for projects requiring extensive UI customization, while ruoyi-vue-pro might be more appropriate for full-stack applications needing quick setup and backend integration.

A modern vue admin panel built with Vue3, Shadcn UI, Vite, TypeScript, and Monorepo. It's fast!

Pros of vue-vben-admin

  • More comprehensive and feature-rich admin template
  • Better TypeScript support and integration
  • Extensive documentation and examples

Cons of vue-vben-admin

  • Steeper learning curve due to its complexity
  • May be overkill for smaller projects
  • Less focus on backend integration compared to ruoyi-vue-pro

Code Comparison

vue-vben-admin:

import { defineComponent } from 'vue';
import { BasicTable, useTable } from '/@/components/Table';
import { getBasicColumns, getFormConfig } from './tableData';

export default defineComponent({
  setup() {
    const [registerTable] = useTable({
      title: 'Basic Usage',
      api: demoListApi,
      columns: getBasicColumns(),
      formConfig: getFormConfig(),
    });
    return { registerTable };
  },
});

ruoyi-vue-pro:

<template>
  <div class="app-container">
    <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
      <el-form-item label="参数名称" prop="configName">
        <el-input v-model="queryParams.configName" placeholder="请输入参数名称" clearable size="small" @keyup.enter.native="handleQuery" />
      </el-form-item>
    </el-form>
  </div>
</template>

Both projects offer robust admin templates, but vue-vben-admin focuses more on frontend features and TypeScript integration, while ruoyi-vue-pro provides a more comprehensive full-stack solution with backend integration. The code snippets showcase the different approaches to table implementation and form handling in each project.

🎉 vue admin,vue3 admin,vue3.0 admin,vue后台管理,vue-admin,vue3.0-admin,admin,vue-admin,vue-element-admin,ant-design,vab admin pro,vab admin plus,vue admin plus,vue admin pro

Pros of vue-admin-better

  • More lightweight and focused on front-end admin template functionality
  • Easier to customize and extend for specific project needs
  • Faster initial setup and development time for simple admin interfaces

Cons of vue-admin-better

  • Less comprehensive out-of-the-box features compared to ruoyi-vue-pro
  • Limited backend integration and scaffolding options
  • Smaller community and fewer resources for support and troubleshooting

Code Comparison

vue-admin-better:

<template>
  <vab-layout>
    <vab-sidebar />
    <vab-main>
      <router-view />
    </vab-main>
  </vab-layout>
</template>

ruoyi-vue-pro:

<template>
  <div :class="classObj" class="app-wrapper">
    <sidebar class="sidebar-container" />
    <div class="main-container">
      <navbar />
      <app-main />
    </div>
  </div>
</template>

The code snippets show that vue-admin-better uses custom components for layout, while ruoyi-vue-pro follows a more traditional structure. This reflects the difference in approach, with vue-admin-better focusing on simplicity and customization, while ruoyi-vue-pro provides a more comprehensive and structured framework.

mall-admin-web是一个电商后台管理系统的前端项目,基于Vue+Element实现。 主要包括商品管理、订单管理、会员管理、促销管理、运营管理、内容管理、统计报表、财务管理、权限管理、设置等功能。

Pros of mall-admin-web

  • Focused specifically on e-commerce admin functionality
  • More comprehensive product management features
  • Includes order management and logistics tracking

Cons of mall-admin-web

  • Less extensive general-purpose admin features
  • Smaller community and fewer contributors
  • Less frequent updates and maintenance

Code Comparison

mall-admin-web (Vue.js component):

<template>
  <div class="app-container">
    <el-card class="filter-container" shadow="never">
      <div>
        <i class="el-icon-search"></i>
        <span>筛选搜索</span>
        <el-button style="float: right" type="primary" @click="handleSearchList()">查询结果</el-button>
      </div>
    </el-card>
  </div>
</template>

ruoyi-vue-pro (Vue.js component):

<template>
  <div class="app-container">
    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
      <el-form-item label="登录地址" prop="loginIp">
        <el-input v-model="queryParams.loginIp" placeholder="请输入登录地址" clearable style="width: 240px" @keyup.enter.native="handleQuery" />
      </el-form-item>
    </el-form>
  </div>
</template>

Both projects use Vue.js and Element UI for the frontend, but ruoyi-vue-pro appears to have a more structured approach to form handling and querying. mall-admin-web focuses on e-commerce-specific features, while ruoyi-vue-pro offers a more general-purpose admin framework with extensive customization options.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

Downloads Downloads

严肃声明:现在、未来都不会有商业版本,所有代码全部开源!!

「我喜欢写代码,乐此不疲」
「我喜欢做开源,以此为乐」

我 🐶 在上海艰苦奋斗,早中晚在 top3 大厂认真搬砖,夜里为开源做贡献。

如果这个项目让你有所收获,记得 Star 关注哦,这对我是非常不错的鼓励与支持。

🐶 新手必读

🐰 版本说明

版本JDK 8 + Spring Boot 2.7JDK 17/21 + Spring Boot 3.2
【完整版】ruoyi-vue-promaster 分支master-jdk17 分支
【精简版】yudao-boot-minimaster 分支master-jdk17 分支
  • 【完整版】:包括系统功能、基础设施、会员中心、数据报表、工作流程、商城系统、微信公众号、CRM、ERP 等功能
  • 【精简版】:只包括系统功能、基础设施功能,不包括会员中心、数据报表、工作流程、商城系统、微信公众号、CRM、ERP 等功能

可参考 《迁移文档》 ,只需要 5-10 分钟,即可将【完整版】按需迁移到【精简版】

🐯 平台简介

芋道,以开发者为中心,打造中国第一流的快速开发平台,全部开源,个人与企业可 100% 免费使用。

有任何问题,或者想要的功能,可以在 Issues 中提给艿艿。

😜 给项目点点 Star 吧,这对我们真的很重要!

架构图

  • Java 后端:master 分支为 JDK 8 + Spring Boot 2.7,master-jdk17 分支为 JDK 17/21 + Spring Boot 3.2
  • 管理后台的电脑端:Vue3 提供 element-plus、vben(ant-design-vue) 两个版本,Vue2 提供 element-ui 版本
  • 管理后台的移动端:采用 uni-app 方案,一份代码多终端适配,同时支持 APP、小程序、H5!
  • 后端采用 Spring Boot 多模块架构、MySQL + MyBatis Plus、Redis + Redisson
  • 数据库可使用 MySQL、Oracle、PostgreSQL、SQL Server、MariaDB、国产达梦 DM、TiDB 等
  • 消息队列可使用 Event、Redis、RabbitMQ、Kafka、RocketMQ 等
  • 权限认证使用 Spring Security & Token & Redis,支持多终端、多种用户的认证系统,支持 SSO 单点登录
  • 支持加载动态权限菜单,按钮级别权限控制,Redis 缓存提升性能
  • 支持 SaaS 多租户,可自定义每个租户的权限,提供透明化的多租户底层封装
  • 工作流使用 Flowable,支持动态表单、在线设计流程、会签 / 或签、多种任务分配方式
  • 高效率开发,使用代码生成器可以一键生成 Java、Vue 前后端代码、SQL 脚本、接口文档,支持单表、树表、主子表
  • 实时通信,采用 Spring WebSocket 实现,内置 Token 身份校验,支持 WebSocket 集群
  • 集成微信小程序、微信公众号、企业微信、钉钉等三方登陆,集成支付宝、微信等支付与退款
  • 集成阿里云、腾讯云等短信渠道,集成 MinIO、阿里云、腾讯云、七牛云等云存储服务
  • 集成报表设计器、大屏设计器,通过拖拽即可生成酷炫的报表与大屏

🐳 项目关系

架构演进

三个项目的功能对比,可见社区共同整理的 国产开源项目对比 表格。

后端项目

项目Star简介
ruoyi-vue-proGitee star GitHub stars基于 Spring Boot 多模块架构
yudao-cloudGitee star GitHub stars基于 Spring Cloud 微服务架构
Spring-Boot-LabsGitee star GitHub stars系统学习 Spring Boot & Cloud 专栏

前端项目

项目Star简介
yudao-ui-admin-vue3Gitee star GitHub stars基于 Vue3 + element-plus 实现的管理后台
yudao-ui-admin-vbenGitee star GitHub stars基于 Vue3 + vben(ant-design-vue) 实现的管理后台
yudao-mall-uniappGitee star GitHub stars基于 uni-app 实现的商城小程序
yudao-ui-admin-vue2Gitee star GitHub stars基于 Vue2 + element-ui 实现的管理后台
yudao-ui-admin-uniappGitee star GitHub stars基于 Vue2 + element-ui 实现的管理后台
yudao-ui-go-viewGitee star GitHub stars基于 Vue3 + naive-ui 实现的大屏报表

😎 开源协议

为什么推荐使用本项目?

① 本项目采用比 Apache 2.0 更宽松的 MIT License 开源协议,个人与企业可 100% 免费使用,不用保留类作者、Copyright 信息。

② 代码全部开源,不会像其他项目一样,只开源部分代码,让你无法了解整个项目的架构设计。国产开源项目对比

开源项目对比

③ 代码整洁、架构整洁,遵循《阿里巴巴 Java 开发手册》规范,代码注释详细,113770 行 Java 代码,42462 行代码注释。

🤝 项目外包

我们也是接外包滴,如果你有项目想要外包,可以微信联系【Aix9975】。

团队包含专业的项目经理、架构师、前端工程师、后端工程师、测试工程师、运维工程师,可以提供全流程的外包服务。

项目可以是商城、SCRM 系统、OA 系统、物流系统、ERP 系统、CMS 系统、HIS 系统、支付系统、IM 聊天、微信公众号、微信小程序等等。

🐼 内置功能

系统内置多种多种业务功能,可以用于快速你的业务系统:

功能分层

  • 通用模块(必选):系统功能、基础设施
  • 通用模块(可选):工作流程、支付系统、数据报表、会员中心
  • 业务系统(按需):ERP 系统、CRM 系统、商城系统、微信公众号、AI 大模型

友情提示:本项目基于 RuoYi-Vue 修改,重构优化后端的代码,美化前端的界面。

  • 额外新增的功能,我们使用 🚀 标记。
  • 重新实现的功能,我们使用 ⭐️ 标记。

🙂 所有功能,都通过 单元测试 保证高质量。

系统功能

功能描述
用户管理用户是系统操作者,该功能主要完成系统用户配置
⭐️在线用户当前系统中活跃用户状态监控,支持手动踢下线
角色管理角色菜单权限分配、设置角色按机构进行数据范围权限划分
菜单管理配置系统菜单、操作权限、按钮权限标识等,本地缓存提供性能
部门管理配置系统组织机构(公司、部门、小组),树结构展现支持数据权限
岗位管理配置系统用户所属担任职务
🚀租户管理配置系统租户,支持 SaaS 场景下的多租户功能
🚀租户套餐配置租户套餐,自定每个租户的菜单、操作、按钮的权限
字典管理对系统中经常使用的一些较为固定的数据进行维护
🚀短信管理短信渠道、短息模板、短信日志,对接阿里云、腾讯云等主流短信平台
🚀邮件管理邮箱账号、邮件模版、邮件发送日志,支持所有邮件平台
🚀站内信系统内的消息通知,提供站内信模版、站内信消息
🚀操作日志系统正常操作日志记录和查询,集成 Swagger 生成日志内容
⭐️登录日志系统登录日志记录查询,包含登录异常
🚀错误码管理系统所有错误码的管理,可在线修改错误提示,无需重启服务
通知公告系统通知公告信息发布维护
🚀敏感词配置系统敏感词,支持标签分组
🚀应用管理管理 SSO 单点登录的应用,支持多种 OAuth2 授权方式
🚀地区管理展示省份、城市、区镇等城市信息,支持 IP 对应城市

功能图

工作流程

功能描述
🚀流程模型配置工作流的流程模型,支持文件导入与在线设计流程图,提供 7 种任务分配规则
🚀流程表单拖动表单元素生成相应的工作流表单,覆盖 Element UI 所有的表单组件
🚀用户分组自定义用户分组,可用于工作流的审批分组
🚀我的流程查看我发起的工作流程,支持新建、取消流程等操作,高亮流程图、审批时间线
🚀待办任务查看自己【未】审批的工作任务,支持通过、不通过、转发、委派、退回等操作
🚀已办任务查看自己【已】审批的工作任务,未来会支持回退操作
🚀OA 请假作为业务自定义接入工作流的使用示例,只需创建请求对应的工作流程,即可进行审批

功能图

支付系统

功能描述
🚀应用信息配置商户的应用信息,对接支付宝、微信等多个支付渠道
🚀支付订单查看用户发起的支付宝、微信等的【支付】订单
🚀退款订单查看用户发起的支付宝、微信等的【退款】订单
🚀回调通知查看支付回调业务的【支付】【退款】的通知结果
🚀接入示例提供接入支付系统的【支付】【退款】的功能实战

基础设施

功能描述
🚀代码生成前后端代码的生成(Java、Vue、SQL、单元测试),支持 CRUD 下载
🚀系统接口基于 Swagger 自动生成相关的 RESTful API 接口文档
🚀数据库文档基于 Screw 自动生成数据库文档,支持导出 Word、HTML、MD 格式
表单构建拖动表单元素生成相应的 HTML 代码,支持导出 JSON、Vue 文件
🚀配置管理对系统动态配置常用参数,支持 SpringBoot 加载
⭐️定时任务在线(添加、修改、删除)任务调度包含执行结果日志
🚀文件服务支持将文件存储到 S3(MinIO、阿里云、腾讯云、七牛云)、本地、FTP、数据库等
🚀WebSocket提供 WebSocket 接入示例,支持一对一、一对多发送方式
🚀API 日志包括 RESTful API 访问日志、异常日志两部分,方便排查 API 相关的问题
MySQL 监控监视当前系统数据库连接池状态,可进行分析SQL找出系统性能瓶颈
Redis 监控监控 Redis 数据库的使用情况,使用的 Redis Key 管理
🚀消息队列基于 Redis 实现消息队列,Stream 提供集群消费,Pub/Sub 提供广播消费
🚀Java 监控基于 Spring Boot Admin 实现 Java 应用的监控
🚀链路追踪接入 SkyWalking 组件,实现链路追踪
🚀日志中心接入 SkyWalking 组件,实现日志中心
🚀服务保障基于 Redis 实现分布式锁、幂等、限流功能,满足高并发场景
🚀日志服务轻量级日志中心,查看远程服务器的日志
🚀单元测试基于 JUnit + Mockito 实现单元测试,保证功能的正确性、代码的质量等

功能图

数据报表

功能描述
🚀报表设计器支持数据报表、图形报表、打印设计等
🚀大屏设计器拖拽生成数据大屏,内置几十种图表组件

微信公众号

功能描述
🚀账号管理配置接入的微信公众号,可支持多个公众号
🚀数据统计统计公众号的用户增减、累计用户、消息概况、接口分析等数据
🚀粉丝管理查看已关注、取关的粉丝列表,可对粉丝进行同步、打标签等操作
🚀消息管理查看粉丝发送的消息列表,可主动回复粉丝消息
🚀自动回复自动回复粉丝发送的消息,支持关注回复、消息回复、关键字回复
🚀标签管理对公众号的标签进行创建、查询、修改、删除等操作
🚀菜单管理自定义公众号的菜单,也可以从公众号同步菜单
🚀素材管理管理公众号的图片、语音、视频等素材,支持在线播放语音、视频
🚀图文草稿箱新增常用的图文素材到草稿箱,可发布到公众号
🚀图文发表记录查看已发布成功的图文素材,支持删除操作

商城系统

演示地址:https://doc.iocoder.cn/mall-preview/

功能图

功能图

会员中心

功能描述
🚀会员管理会员是 C 端的消费者,该功能用于会员的搜索与管理
🚀会员标签对会员的标签进行创建、查询、修改、删除等操作
🚀会员等级对会员的等级、成长值进行管理,可用于订单折扣等会员权益
🚀会员分组对会员进行分组,用于用户画像、内容推送等运营手段
🚀积分签到回馈给签到、消费等行为的积分,会员可订单抵现、积分兑换等途径消耗

ERP 系统

演示地址:https://doc.iocoder.cn/erp-preview/

功能图

CRM 系统

演示地址:https://doc.iocoder.cn/crm-preview/

功能图

AI 大模型

演示地址:https://doc.iocoder.cn/ai-preview/

功能图

功能图

🐨 技术栈

模块

项目说明
yudao-dependenciesMaven 依赖版本管理
yudao-frameworkJava 框架拓展
yudao-server管理后台 + 用户 APP 的服务端
yudao-module-system系统功能的 Module 模块
yudao-module-member会员中心的 Module 模块
yudao-module-infra基础设施的 Module 模块
yudao-module-bpm工作流程的 Module 模块
yudao-module-pay支付系统的 Module 模块
yudao-module-mall商城系统的 Module 模块
yudao-module-erpERP 系统的 Module 模块
yudao-module-crmCRM 系统的 Module 模块
yudao-module-aiAI 大模型的 Module 模块
yudao-module-mp微信公众号的 Module 模块
yudao-module-report大屏报表 Module 模块

框架

框架说明版本学习指南
Spring Boot应用开发框架2.7.18文档
MySQL数据库服务器5.7 / 8.0+
DruidJDBC 连接池、监控组件1.2.23文档
MyBatis PlusMyBatis 增强工具包3.5.7文档
Dynamic Datasource动态数据源3.6.1文档
Rediskey-value 数据库5.0 / 6.0 /7.0
RedissonRedis 客户端3.32.0文档
Spring MVCMVC 框架5.3.24文档
Spring SecuritySpring 安全框架5.7.11文档
Hibernate Validator参数校验组件6.2.5文档
Flowable工作流引擎6.8.0文档
Quartz任务调度组件2.3.2文档
SpringdocSwagger 文档1.7.0文档
SkyWalking分布式应用追踪系统8.12.0文档
Spring Boot AdminSpring Boot 监控平台2.7.10文档
JacksonJSON 工具库2.13.5
MapStructJava Bean 转换1.5.5.Final文档
Lombok消除冗长的 Java 代码1.18.34文档
JUnitJava 单元测试框架5.8.2-
MockitoJava Mock 框架4.8.0-

🐷 演示图

系统功能

模块biubiubiu
登录 & 首页登录首页个人中心
用户 & 应用用户管理令牌管理应用管理
租户 & 套餐租户管理租户套餐-
部门 & 岗位部门管理岗位管理-
菜单 & 角色菜单管理角色管理-
审计日志操作日志登录日志-
短信短信渠道短信模板短信日志
字典 & 敏感词字典类型字典数据敏感词
错误码 & 通知错误码管理通知公告-

工作流程

模块biubiubiu
流程模型流程模型-列表流程模型-设计流程模型-定义
表单 & 分组流程表单用户分组-
我的流程我的流程-列表我的流程-发起我的流程-详情
待办 & 已办任务列表-审批任务列表-待办任务列表-已办
OA 请假OA请假-列表OA请假-发起OA请假-详情

基础设施

模块biubiubiu
代码生成代码生成生成效果-
文档系统接口数据库文档-
文件 & 配置文件配置文件管理配置管理
定时任务定时任务任务日志-
API 日志访问日志错误日志-
MySQL & RedisMySQLRedis-
监控平台Java监控链路追踪日志中心

支付系统

模块biubiubiu
商家 & 应用商户信息应用信息-列表应用信息-编辑
支付 & 退款支付订单退款订单---

数据报表

模块biubiubiu
报表设计器数据报表图形报表报表设计器-打印设计
大屏设计器大屏列表大屏预览大屏编辑

移动端(管理后台)

biubiubiu

目前已经实现登录、我的、工作台、编辑资料、头像修改、密码修改、常见问题、关于我们等基础功能。