## 初始化调整;
This commit is contained in:
parent
820b4adc29
commit
670900d1d3
20
README.md
20
README.md
|
@ -2,14 +2,14 @@
|
|||
|
||||
### code-util(实体代码生成器)
|
||||
|
||||
### hzs-api(RPC调用接口)
|
||||
hzs-api-activity -- 活动服务接口以及RPC传输数据DTO实体
|
||||
hzs-api-bonus -- 奖金服务接口以及RPC传输数据DTO实体
|
||||
hzs-api-member -- 会员服务接口以及RPC传输数据DTO实体
|
||||
hzs-api-report -- 报表服务接口以及RPC传输数据DTO实体
|
||||
hzs-api-sale -- 销售、供应链服务接口以及RPC传输数据DTO实体
|
||||
hzs-api-system -- 系统基础服务接口以及RPC传输数据DTO实体
|
||||
hzs-api-third -- 三方服务接口以及RPC传输数据DTO实体
|
||||
### bd-api(RPC调用接口)
|
||||
bd-api-activity -- 活动服务接口以及RPC传输数据DTO实体
|
||||
bd-api-bonus -- 奖金服务接口以及RPC传输数据DTO实体
|
||||
bd-api-member -- 会员服务接口以及RPC传输数据DTO实体
|
||||
bd-api-report -- 报表服务接口以及RPC传输数据DTO实体
|
||||
bd-api-sale -- 销售、供应链服务接口以及RPC传输数据DTO实体
|
||||
bd-api-system -- 系统基础服务接口以及RPC传输数据DTO实体
|
||||
bd-api-third -- 三方服务接口以及RPC传输数据DTO实体
|
||||
|
||||
### hzs-business(业务相关服务)
|
||||
hzs-business-activity -- 活动服务(所有活动等) 8095
|
||||
|
@ -26,8 +26,8 @@
|
|||
hzs-common-domain -- 系统对应数据库实体以及扩展分类
|
||||
hzs-common-security -- security用户鉴权依赖组件
|
||||
|
||||
### hzs-gateway(统一网关入口)
|
||||
hzs-gateway -- 统一网关 8080
|
||||
### bd-gateway(统一网关入口)
|
||||
bd-gateway -- 统一网关 8080
|
||||
|
||||
### hzs-third(三方服务)
|
||||
hzs-third -- 三方服务(支付、短信、邮件、物流)以及MQ等异步接收消息处理 8082
|
||||
|
|
|
@ -5,22 +5,22 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>com.hzs</groupId>
|
||||
<artifactId>hzs-api</artifactId>
|
||||
<version>3.1.0-SNAPSHOT</version>
|
||||
<groupId>com.bd</groupId>
|
||||
<artifactId>bd-api</artifactId>
|
||||
<version>1.1.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>hzs-api-sale</artifactId>
|
||||
<artifactId>bd-api-bonus</artifactId>
|
||||
|
||||
<description>
|
||||
hzs-api-sale销售服务
|
||||
bd-api-bonus奖金服务
|
||||
</description>
|
||||
|
||||
<dependencies>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.hzs</groupId>
|
||||
<artifactId>hzs-api-system</artifactId>
|
||||
<groupId>com.bd</groupId>
|
||||
<artifactId>bd-api-system</artifactId>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
|
@ -5,22 +5,22 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>com.hzs</groupId>
|
||||
<artifactId>hzs-api</artifactId>
|
||||
<version>3.1.0-SNAPSHOT</version>
|
||||
<groupId>com.bd</groupId>
|
||||
<artifactId>bd-api</artifactId>
|
||||
<version>1.1.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>hzs-api-bonus</artifactId>
|
||||
<artifactId>bd-api-member</artifactId>
|
||||
|
||||
<description>
|
||||
hzs-api-bonus奖金服务
|
||||
bd-api-member会员服务
|
||||
</description>
|
||||
|
||||
<dependencies>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.hzs</groupId>
|
||||
<artifactId>hzs-api-system</artifactId>
|
||||
<groupId>com.bd</groupId>
|
||||
<artifactId>bd-api-system</artifactId>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
|
@ -5,21 +5,21 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>com.hzs</groupId>
|
||||
<artifactId>hzs-api</artifactId>
|
||||
<version>3.1.0-SNAPSHOT</version>
|
||||
<groupId>com.bd</groupId>
|
||||
<artifactId>bd-api</artifactId>
|
||||
<version>1.1.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>hzs-api-report</artifactId>
|
||||
<artifactId>bd-api-report</artifactId>
|
||||
|
||||
<description>
|
||||
hzs-api-report报表服务
|
||||
bd-api-report报表服务
|
||||
</description>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.hzs</groupId>
|
||||
<artifactId>hzs-api-system</artifactId>
|
||||
<groupId>com.bd</groupId>
|
||||
<artifactId>bd-api-system</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
|
@ -5,22 +5,22 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>com.hzs</groupId>
|
||||
<artifactId>hzs-api</artifactId>
|
||||
<version>3.1.0-SNAPSHOT</version>
|
||||
<groupId>com.bd</groupId>
|
||||
<artifactId>bd-api</artifactId>
|
||||
<version>1.1.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>hzs-api-member</artifactId>
|
||||
<artifactId>bd-api-sale</artifactId>
|
||||
|
||||
<description>
|
||||
hzs-api-member会员服务
|
||||
bd-api-sale销售服务
|
||||
</description>
|
||||
|
||||
<dependencies>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.hzs</groupId>
|
||||
<artifactId>hzs-api-system</artifactId>
|
||||
<groupId>com.bd</groupId>
|
||||
<artifactId>bd-api-system</artifactId>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
|
@ -5,26 +5,26 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>com.hzs</groupId>
|
||||
<artifactId>hzs-api</artifactId>
|
||||
<version>3.1.0-SNAPSHOT</version>
|
||||
<groupId>com.bd</groupId>
|
||||
<artifactId>bd-api</artifactId>
|
||||
<version>1.1.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>hzs-api-scm</artifactId>
|
||||
<artifactId>bd-api-scm</artifactId>
|
||||
|
||||
<description>
|
||||
hzs-api-scm进销存服务
|
||||
bd-api-scm进销存服务
|
||||
</description>
|
||||
|
||||
<dependencies>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.hzs</groupId>
|
||||
<artifactId>hzs-api-system</artifactId>
|
||||
<groupId>com.bd</groupId>
|
||||
<artifactId>bd-api-system</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.hzs</groupId>
|
||||
<artifactId>hzs-common-domain</artifactId>
|
||||
<groupId>com.bd</groupId>
|
||||
<artifactId>bd-common-domain</artifactId>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue