是一套全部开源的快速开发平台。
com.siwei     
├── siwei-web             // 前端框架 [80]
├── siwei-gateway         // 网关模块 [8080]
├── siwei-auth            // 认证中心 [9200]
├── siwei-api             // 接口模块
│       └── siwei-api-system                          // 系统接口
├── siwei-common          // 通用模块
│       └── siwei-common-core                         // 核心模块
│       └── siwei-common-datascope                    // 权限范围
│       └── siwei-common-datasource                   // 多数据源
│       └── siwei-common-log                          // 日志记录
│       └── siwei-common-redis                        // 缓存服务
│       └── siwei-common-seata                        // 分布式事务
│       └── siwei-common-security                     // 安全模块
│       └── siwei-common-sensitive                    // 数据脱敏
│       └── siwei-common-swagger                      // 系统接口
├── siwei-modules         // 业务模块
│       └── siwei-system                              // 系统模块 [9201]
│       └── siwei-gen                                 // 代码生成 [9202]
│       └── siwei-job                                 // 定时任务 [9203]
│       └── siwei-file                                // 文件服务 [9300]
│       └── siwei-spatial                             // 空间处理服务 [9204]
├── siwei-visual          // 图形化管理模块
│       └── siwei-visual-monitor                      // 监控中心 [9100]
├── siwei-nacos-2.3.2                                 // 注册中心naocs [7848、8848、9848]
├──pom.xml                // 公共依赖
通过分支版本添加对应的子模块方式进行项目场景的开发,
比如说审核系统,在siwei-cloud项目中,创建审核系统的分支siwei-rsmonitoring
创建.gitmodules执行代码前后代码模块所在位置,进行模块化开发
[submodule "siwei-modules/siwei-rsmonitoring"] path = siwei-modules/siwei-rsmonitoring url = http://114.244.114.158:8802/siwei/siwei-rsmonitoring.git [submodule "siwei-web"] path = siwei-web url = http://114.244.114.158:8802/siwei/rsmonitoring-manage.git
  git submodule add http://114.244.114.158:8802/siwei/siwei-rsmonitoring.git siwei-modules/siwei-rsmonitoring
  git submodule update --init --recursive
进入子模块目录,进行相关的操作