Convert Figma logo to code with AI

YunaiV logoyudao-cloud

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

16,024
3,881
16,024
1

Top Related Projects

Spring Cloud Alibaba provides a one-stop solution for application development for the distributed solutions of Alibaba middleware.

77,204

mall项目是一套电商系统,包括前台商城系统及后台管理系统,基于SpringBoot+MyBatis实现,采用Docker容器化部署。 前台商城系统包含首页门户、商品推荐、商品搜索、商品展示、购物车、订单流程、会员中心、客户服务、帮助中心等模块。 后台管理系统包含商品管理、订单管理、会员管理、促销管理、运营管理、内容管理、统计报表、财务管理、权限管理、设置等模块。

基于SpringBoot2.x、SpringCloud和SpringCloudAlibaba并采用前后端分离的企业级微服务多租户系统架构。并引入组件化的思想实现高内聚低耦合,项目代码简洁注释丰富上手容易,适合学习和企业中使用。真正实现了基于RBAC、jwt和oauth2的无状态统一权限认证的解决方案,面向互联网设计同时适合B端和C端用户,支持CI/CD多环境部署,并提供应用管理方便第三方系统接入;同时还集合各种微服务治理功能和监控功能。模块包括:企业级的认证系统、开发平台、应用监控、慢sql监控、统一日志、单点登录、Redis分布式高速缓存、配置中心、分布式任务调度、接口文档、代码生成等等。

基于SpringCloud2.1的微服务开发脚手架,整合了spring-security-oauth2、nacos、feign、sentinel、springcloud-gateway等。服务治理方面引入elasticsearch、skywalking、springboot-admin、zipkin等,让项目开发快速进入业务开发,而不需过多时间花费在架构搭建上。持续更新中

spring cloud + vue + oAuth2.0全家桶实战,前后端分离模拟商城,完整的购物流程、后端运营平台,可以实现快速搭建企业级微服务项目。支持微信登录等三方登录。

5,824

↥ ↥ ↥ 点击关注更新,基于 Spring Cloud 2023 、Spring Boot 3.3、 OAuth2 的 RBAC 权限管理系统

Quick Overview

YunaiV/yudao-cloud is an open-source enterprise-level Java microservices platform. It provides a comprehensive solution for building and managing microservices-based applications, incorporating best practices and modern technologies. The project aims to offer a robust foundation for developing scalable and maintainable enterprise applications.

Pros

  • Comprehensive microservices architecture with a wide range of features and modules
  • Extensive documentation and guides for easy adoption and implementation
  • Active development and regular updates, ensuring the project stays current with industry trends
  • Integration with popular tools and frameworks in the Java ecosystem

Cons

  • Steep learning curve for developers new to microservices architecture
  • Large codebase may be overwhelming for smaller projects or teams
  • Potential overhead in terms of resources and complexity for simpler applications
  • Some modules may require additional configuration or customization for specific use cases

Code Examples

  1. Example of creating a new user:
@PostMapping("/create")
@PreAuthorize("@ss.hasPermission('system:user:create')")
public CommonResult<Long> createUser(@Valid @RequestBody UserCreateReqVO reqVO) {
    Long userId = userService.createUser(reqVO);
    return success(userId);
}
  1. Example of querying user information:
@GetMapping("/get")
@PreAuthorize("@ss.hasPermission('system:user:query')")
public CommonResult<UserRespVO> getUser(@RequestParam("id") Long id) {
    UserDO user = userService.getUser(id);
    return success(UserConvert.INSTANCE.convert(user));
}
  1. Example of updating user information:
@PutMapping("/update")
@PreAuthorize("@ss.hasPermission('system:user:update')")
public CommonResult<Boolean> updateUser(@Valid @RequestBody UserUpdateReqVO reqVO) {
    userService.updateUser(reqVO);
    return success(true);
}

Getting Started

To get started with YunaiV/yudao-cloud:

  1. Clone the repository:

    git clone https://github.com/YunaiV/yudao-cloud.git
    
  2. Set up the required dependencies (Java 8+, Maven, MySQL, Redis, etc.)

  3. Configure the application properties in application.yaml files

  4. Build and run the project:

    mvn clean package
    java -jar yudao-server.jar
    
  5. Access the application at http://localhost:48080

For detailed setup instructions and documentation, refer to the project's wiki and README files.

Competitor Comparisons

Spring Cloud Alibaba provides a one-stop solution for application development for the distributed solutions of Alibaba middleware.

Pros of spring-cloud-alibaba

  • More comprehensive and mature ecosystem for building distributed systems
  • Stronger community support and regular updates
  • Better integration with Alibaba Cloud services

Cons of spring-cloud-alibaba

  • Steeper learning curve due to its extensive feature set
  • May be overkill for smaller projects or simpler microservices architectures
  • Potential vendor lock-in with Alibaba Cloud services

Code Comparison

spring-cloud-alibaba:

@SpringBootApplication
@EnableDiscoveryClient
public class ProviderApplication {
    public static void main(String[] args) {
        SpringApplication.run(ProviderApplication.class, args);
    }
}

yudao-cloud:

@SpringBootApplication
@EnableRyuuDiscoveryClient
public class SystemServerApplication {
    public static void main(String[] args) {
        SpringApplication.run(SystemServerApplication.class, args);
    }
}

The code snippets show similar application bootstrapping, but spring-cloud-alibaba uses the standard @EnableDiscoveryClient annotation, while yudao-cloud uses a custom @EnableRyuuDiscoveryClient annotation.

spring-cloud-alibaba offers a more comprehensive solution for building cloud-native applications, with better integration for Alibaba Cloud services. However, it may be more complex and potentially lead to vendor lock-in. yudao-cloud, on the other hand, appears to be a more lightweight and customized solution, which might be easier to adopt for smaller projects but may lack some advanced features and community support compared to spring-cloud-alibaba.

77,204

mall项目是一套电商系统,包括前台商城系统及后台管理系统,基于SpringBoot+MyBatis实现,采用Docker容器化部署。 前台商城系统包含首页门户、商品推荐、商品搜索、商品展示、购物车、订单流程、会员中心、客户服务、帮助中心等模块。 后台管理系统包含商品管理、订单管理、会员管理、促销管理、运营管理、内容管理、统计报表、财务管理、权限管理、设置等模块。

Pros of mall

  • More comprehensive e-commerce features, including order management and payment integration
  • Extensive documentation and tutorials for easier onboarding
  • Larger community and more frequent updates

Cons of mall

  • Higher complexity due to its extensive feature set
  • Steeper learning curve for developers new to e-commerce systems
  • Less focus on microservices architecture compared to yudao-cloud

Code Comparison

mall (Product Service):

@Service
public class PmsProductServiceImpl implements PmsProductService {
    @Autowired
    private PmsProductMapper productMapper;
    
    @Override
    public List<PmsProduct> list(PmsProductQueryParam productQueryParam,
                                 Integer pageSize, Integer pageNum) {
        PageHelper.startPage(pageNum, pageSize);
        return productMapper.selectList(productQueryParam);
    }
}

yudao-cloud (Product Service):

@Service
public class ProductServiceImpl implements ProductService {
    @Resource
    private ProductMapper productMapper;

    @Override
    public PageResult<ProductDO> getProductPage(ProductPageReqVO pageReqVO) {
        return productMapper.selectPage(pageReqVO);
    }
}

Both projects implement product-related services, but mall's implementation appears more detailed with specific query parameters, while yudao-cloud uses a more generic approach with a PageResult object.

基于SpringBoot2.x、SpringCloud和SpringCloudAlibaba并采用前后端分离的企业级微服务多租户系统架构。并引入组件化的思想实现高内聚低耦合,项目代码简洁注释丰富上手容易,适合学习和企业中使用。真正实现了基于RBAC、jwt和oauth2的无状态统一权限认证的解决方案,面向互联网设计同时适合B端和C端用户,支持CI/CD多环境部署,并提供应用管理方便第三方系统接入;同时还集合各种微服务治理功能和监控功能。模块包括:企业级的认证系统、开发平台、应用监控、慢sql监控、统一日志、单点登录、Redis分布式高速缓存、配置中心、分布式任务调度、接口文档、代码生成等等。

Pros of microservices-platform

  • More comprehensive documentation and guides for setup and usage
  • Includes a built-in API gateway for better service management
  • Offers a wider range of pre-built microservices components

Cons of microservices-platform

  • Less frequent updates and maintenance compared to yudao-cloud
  • Slightly more complex architecture, potentially steeper learning curve
  • Fewer integrations with modern cloud-native technologies

Code Comparison

microservices-platform:

@EnableFeignClients
@EnableDiscoveryClient
@SpringBootApplication
public class UserCenterApp {
    public static void main(String[] args) {
        SpringApplication.run(UserCenterApp.class, args);
    }
}

yudao-cloud:

@SpringBootApplication
@EnableDiscoveryClient
@EnableFeignClients(basePackages = "cn.iocoder.yudao.module.system.api")
public class SystemServerApplication {
    public static void main(String[] args) {
        SpringApplication.run(SystemServerApplication.class, args);
    }
}

Both projects use similar Spring Boot annotations for microservices setup, but yudao-cloud specifies a base package for Feign clients, potentially offering more granular control over service discovery.

基于SpringCloud2.1的微服务开发脚手架,整合了spring-security-oauth2、nacos、feign、sentinel、springcloud-gateway等。服务治理方面引入elasticsearch、skywalking、springboot-admin、zipkin等,让项目开发快速进入业务开发,而不需过多时间花费在架构搭建上。持续更新中

Pros of SpringCloud

  • More focused on microservices architecture and cloud-native development
  • Provides a comprehensive set of tools for service discovery, configuration management, and distributed tracing
  • Offers a simpler and more straightforward project structure

Cons of SpringCloud

  • Less actively maintained, with fewer recent updates compared to yudao-cloud
  • Limited documentation and examples, which may make it challenging for newcomers
  • Fewer integrated modules and features compared to yudao-cloud's extensive ecosystem

Code Comparison

SpringCloud:

@EnableDiscoveryClient
@SpringBootApplication
public class AuthApplication {
    public static void main(String[] args) {
        SpringApplication.run(AuthApplication.class, args);
    }
}

yudao-cloud:

@SpringBootApplication
@EnableRyuuDiscoveryClient
@EnableRyuuFeignClients
public class YudaoSystemServerApplication {
    public static void main(String[] args) {
        SpringApplication.run(YudaoSystemServerApplication.class, args);
    }
}

Both projects use Spring Boot and enable service discovery, but yudao-cloud includes additional custom annotations for enhanced functionality.

spring cloud + vue + oAuth2.0全家桶实战,前后端分离模拟商城,完整的购物流程、后端运营平台,可以实现快速搭建企业级微服务项目。支持微信登录等三方登录。

Pros of paascloud-master

  • More comprehensive documentation and user guides
  • Broader scope with additional features like message queuing and distributed transactions
  • Larger community and more active development

Cons of paascloud-master

  • Higher complexity and steeper learning curve
  • Less frequent updates and potentially outdated dependencies
  • More resource-intensive due to its extensive feature set

Code Comparison

paascloud-master:

@Configuration
@EnableResourceServer
public class ResourceServerConfig extends ResourceServerConfigurerAdapter {
    @Override
    public void configure(HttpSecurity http) throws Exception {
        http.authorizeRequests().antMatchers("/user/**").authenticated();
    }
}

yudao-cloud:

@Configuration
@EnableResourceServer
public class ResourceServerConfig extends ResourceServerConfigurerAdapter {
    @Override
    public void configure(HttpSecurity http) throws Exception {
        http.authorizeRequests().anyRequest().authenticated();
    }
}

Both projects use similar configurations for resource server setup, but paascloud-master applies authentication specifically to the "/user/**" path, while yudao-cloud authenticates all requests.

5,824

↥ ↥ ↥ 点击关注更新,基于 Spring Cloud 2023 、Spring Boot 3.3、 OAuth2 的 RBAC 权限管理系统

Pros of pig

  • More mature project with a longer development history
  • Larger community and more frequent updates
  • Comprehensive documentation and tutorials available

Cons of pig

  • Steeper learning curve for beginners
  • Less modular architecture compared to yudao-cloud
  • Heavier resource consumption in some scenarios

Code Comparison

pig:

@SneakyThrows
@Override
public void configure(HttpSecurity http) {
    http.authorizeRequests()
        .antMatchers("/token/**", "/actuator/**", "/mobile/**").permitAll()
        .anyRequest().authenticated()
        .and().csrf().disable();
}

yudao-cloud:

@Override
protected void configure(HttpSecurity httpSecurity) throws Exception {
    httpSecurity
        .csrf().disable()
        .authorizeRequests()
        .antMatchers("/auth/**", "/actuator/**").permitAll()
        .anyRequest().authenticated();
}

Both projects use Spring Security for authentication and authorization. The code snippets show similar configuration patterns, with pig using Lombok's @SneakyThrows annotation and yudao-cloud explicitly declaring the exception. pig allows additional endpoints (/mobile/**) compared to yudao-cloud.

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

Coverage Status Downloads Downloads Downloads

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

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

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

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

🐰 版本说明

版本JDK 8 + Spring Boot 2.7JDK 17/21 + Spring Boot 3.2
【完整版】yudao-cloudmaster 分支master-jdk17 分支
【精简版】yudao-cloud-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 Cloud Alibaba 微服务架构,注册中心 + 配置中心 Nacos,定时任务 XXL-Job,服务保障 Sentinel,服务网关 Gateway,分布式事务 Seata
  • 数据库可使用 MySQL、Oracle、PostgreSQL、SQL Server、MariaDB、国产达梦 DM、TiDB 等,基于 MyBatis Plus、Redis + Redisson 操作
  • 消息队列可使用 Event、Redis、RabbitMQ、Kafka、RocketMQ 等
  • 权限认证使用 Spring Security & Token & Redis,支持多终端、多种用户的认证系统,支持 SSO 单点登录
  • 支持加载动态权限菜单,按钮级别权限控制,Redis 缓存提升性能
  • 支持 SaaS 多租户系统,可自定义每个租户的权限,提供透明化的多租户底层封装
  • 高效率开发,使用代码生成器可以一键生成 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 开发手册》规范,代码注释详细,57000 行 Java 代码,22000 行代码注释。

🤝 项目外包

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

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

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

🐼 内置功能

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

功能分层

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

友情提示:本项目基于 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://cloud.iocoder.cn/mall-preview/

功能图

功能图

会员中心

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

ERP 系统

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

功能图

CRM 系统

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

功能图

AI 大模型

演示地址:https://cloud.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-mp微信公众号的 Module 模块
yudao-module-report大屏报表 Module 模块
yudao-module-aiAI 大模型 Module 模块

框架

框架说明版本学习指南
Spring Cloud Alibaba微服务框架2021.0.4.0文档
Nacos配置中心 & 注册中心2.3.2文档
RocketMQ消息队列5.2.0文档
Sentinel服务保障1.8.6文档
XXL Job定时任务2.3.1文档
Spring Cloud Gateway服务网关3.4.1文档
Seata分布式事务1.6.1文档
MySQL数据库服务器5.7 / 8.0+
DruidJDBC 连接池、监控组件1.2.23文档
MyBatis PlusMyBatis 增强工具包3.5.7文档
Dynamic Datasource动态数据源4.3.1文档
Rediskey-value 数据库5.0 / 6.0
RedissonRedis 客户端3.32.0文档
Spring MVCMVC 框架5.3.24文档
Spring SecuritySpring 安全框架5.7.5文档
Hibernate Validator参数校验组件6.2.5文档
Flowable工作流引擎6.8.0文档
Knife4jSwagger 增强 UI 实现4.5.0文档
SkyWalking分布式应用追踪系统8.12.0文档
Spring Boot AdminSpring Boot 监控平台2.7.10文档
JacksonJSON 工具库2.13.3
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

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