# geekvape **Repository Path**: vmvm/geekvape ## Basic Information - **Project Name**: geekvape - **Description**: No description available - **Primary Language**: Java - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 2 - **Created**: 2025-12-05 - **Last Updated**: 2025-12-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 平台简介 GV-Cloud2.4,基于若依微服务2.4版拓展,用于公司内部开发。 * 代码生成模块集成了mybatis-plus插件 * 代码生成模块支持mysql、oracle、sqlserver * 对vue组件进一步封装 ## 系统模块 ``` com.ruoyi ├── ruoyi-ui // 前端框架 ├── ruoyi-gateway // 网关模块 ├── ruoyi-auth // 认证中心 ├── ruoyi-api // 接口模块 | └── ruoyi-api-system // 系统接口模块 | └── gv-api-oa // GV OA接口模块 | └── gv-api-scm // GV scm接口模块 | └── gv-api-wms // GV wms接口模块 | └── gv-api-xxx ├── ruoyi-common // 通用模块 | └── ruoyi-common-core // 核心模块 | └── ruoyi-common-datascope // 权限范围 | └── ruoyi-common-log // 日志记录 | └── ruoyi-common-redis // 缓存服务 | └── ruoyi-common-security // 安全模块 | └── ruoyi-common-swagger // 系统接口 | └── gv-common // GV通用模块 ├── ruoyi-module // 业务模块 | └── ruoyi-system // 系统模块 | └── ruoyi-gen // 系统代码模块 (现由gv-gen替代) | └── ruoyi-job // 定时任务 | └── ruoyi-file // 文件服务 | └── gv-oa // OA业务模块 | └── gv-data-ecology // 泛微OA数据库同步模块 | └── gv-scm // 供应链关系管理模块 | └── gv-wms // 仓库管理系统模块 | └── gv-xxx // 后续新增业务模块 | └── ... ├── ruoyi-visual // 图形化管理模块 | └── ruoyi-visual-monitor // 监控中心 ├── pom.xml // 公共依赖 ``` ## 架构图 ![输入图片说明](https://images.gitee.com/uploads/images/2021/0303/110005_fb6e8abf_8701771.png "屏幕截图.png") ## 核心模块 除GV业务接口模块、GV公共模块、GV业务应用模块、定时任务模块之外,均为核心模块。 核心模块需支持若依版本升级,此模块代码不允许修改。 ## GV 业务接口模块 服务与服务之间的调用放在此模块对应的子模块下。 ``` ├── ruoyi-api | └── gv-api-oa // GV OA接口模块 | └── gv-api-scm // GV scm接口模块 | └── gv-api-wms // GV wms接口模块 | └── gv-api-xxx ``` [服务之间的调用](https://gitee.com/shenzhen-jikena/dashboard/wikis/shenzhen-jikena/technical-framework/preview?doc_id=1266177&sort_id=3652104) ## GV 公共模块 GV 业务系统开发中新增的通用公具类、通用业务代码、通用配置等功能放在此模块下。 ``` ├── ruoyi-common | └── gv-common // GV通用模块 | ``` ## GV 业务应模块 GV具体应用业务模块放在此模块下 ``` ├── ruoyi-module | └── gv-oa // OA业务模块 | └── gv-data-ecology // 泛微OA数据库同步模块 | └── gv-scm // 供应链关系管理模块 | └── gv-wms // 仓库管理系统模块 | └── gv-xxx // 后续新增业务模块 | └── ... ```