Files
tptradeprod/README.md
2025-05-10 20:57:52 +08:00

31 lines
1.1 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
## 命名规则:
groupId:统一使用com.deepinnet
<br/>
artifactIddeepinnet-应用名
包命名规范com.deepinnet.应用名.模块名
<br/>
举例com.deepinnet.tptradeprod.biz
## 项目分层说明:
- tptradeprod-app-starterSpringBoot应用启动类
- tptradeprod-biz业务层
- tptradeprod-biz-service-impl业务层的实现具体业务流程编排
- tptradeprod-common通用层
- tptradeprod-common-dal仓储层
- tptradeprod-common-service
- tptradeprod-common-service-facade需要向外界暴露的领域服务
- tptradeprod-common-service-integration集成的第三方接口
- tptradeprod-common-util工具
- tptradeprod-core领域层
- tptradeprod-core-service本系统内使用的service接口
- tptradeprod-core-model领域模型
## 各模块依赖关系:
- biz负责业务流程编排依赖于common-service-facade、common-service-integration、
common-service-util、core-service
- core-service本系统内的服务 不需要向外暴露依赖core-model、
common-dal、common-util