28 lines
1.7 KiB
Markdown
28 lines
1.7 KiB
Markdown
## 系统模块
|
|
|
|
~~~
|
|
com.tongran
|
|
├── tongran-ui // 前端框架 [80]
|
|
├── tongran-gateway // 网关模块 [8080]
|
|
├── tongran-auth // 认证中心 [9200]
|
|
├── tongran-api // 接口模块
|
|
│ └── tongran-api-system // 系统接口
|
|
├── tongran-common // 通用模块
|
|
│ └── tongran-common-core // 核心模块
|
|
│ └── tongran-common-datascope // 权限范围
|
|
│ └── tongran-common-datasource // 多数据源
|
|
│ └── tongran-common-log // 日志记录
|
|
│ └── tongran-common-redis // 缓存服务
|
|
│ └── tongran-common-seata // 分布式事务
|
|
│ └── tongran-common-security // 安全模块
|
|
│ └── tongran-common-sensitive // 数据脱敏
|
|
│ └── tongran-common-swagger // 系统接口
|
|
├── tongran-modules // 业务模块
|
|
│ └── tongran-system // 系统模块 [9201]
|
|
│ └── tongran-gen // 代码生成 [9202]
|
|
│ └── tongran-job // 定时任务 [9203]
|
|
│ └── tongran-file // 文件服务 [9300]
|
|
├── tongran-visual // 图形化管理模块
|
|
│ └── tongran-visual-monitor // 监控中心 [9100]
|
|
├──pom.xml // 公共依赖
|