forked from sfms3.0/sfms3.0
12 changed files with 387 additions and 4 deletions
@ -0,0 +1,23 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" |
||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
||||
|
<parent> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win</artifactId> |
||||
|
<version>${revision}</version> |
||||
|
</parent> |
||||
|
<modelVersion>4.0.0</modelVersion> |
||||
|
<modules> |
||||
|
<module>win-module-mes-api</module> |
||||
|
<module>win-module-mes-biz</module> |
||||
|
</modules> |
||||
|
<artifactId>win-module-mes</artifactId> |
||||
|
<packaging>pom</packaging> |
||||
|
|
||||
|
<name>${project.artifactId}</name> |
||||
|
<description> |
||||
|
mes 模块下,我们放通用业务,支撑上层的核心业务。 |
||||
|
</description> |
||||
|
|
||||
|
</project> |
@ -0,0 +1,34 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" |
||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
||||
|
<parent> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-module-mes</artifactId> |
||||
|
<version>${revision}</version> |
||||
|
</parent> |
||||
|
<modelVersion>4.0.0</modelVersion> |
||||
|
<artifactId>win-module-mes-api</artifactId> |
||||
|
<packaging>jar</packaging> |
||||
|
|
||||
|
<name>${project.artifactId}</name> |
||||
|
<description> |
||||
|
mes 模块 API,暴露给其它模块调用 |
||||
|
</description> |
||||
|
|
||||
|
<dependencies> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-common</artifactId> |
||||
|
</dependency> |
||||
|
|
||||
|
<!-- 参数校验 --> |
||||
|
<dependency> |
||||
|
<groupId>org.springframework.boot</groupId> |
||||
|
<artifactId>spring-boot-starter-validation</artifactId> |
||||
|
<optional>true</optional> |
||||
|
</dependency> |
||||
|
|
||||
|
</dependencies> |
||||
|
|
||||
|
</project> |
@ -1,4 +1,4 @@ |
|||||
/** |
/** |
||||
* System API 包,定义暴露给其它模块的 API |
* System API 包,定义暴露给其它模块的 API |
||||
*/ |
*/ |
||||
package com.win.wms.api; |
package com.win.scp.api; |
@ -0,0 +1,123 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" |
||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
||||
|
<parent> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-module-mes</artifactId> |
||||
|
<version>${revision}</version> |
||||
|
</parent> |
||||
|
<modelVersion>4.0.0</modelVersion> |
||||
|
<artifactId>win-module-mes-biz</artifactId> |
||||
|
<packaging>jar</packaging> |
||||
|
|
||||
|
<name>${project.artifactId}</name> |
||||
|
<description> |
||||
|
mes 模块下,我们放通用业务,支撑上层的核心业务。 |
||||
|
</description> |
||||
|
|
||||
|
<dependencies> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-module-system-api</artifactId> |
||||
|
<version>${revision}</version> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-module-infra-api</artifactId> |
||||
|
<version>${revision}</version> |
||||
|
</dependency> |
||||
|
|
||||
|
<!-- 业务组件 --> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-biz-operatelog</artifactId> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-biz-sms</artifactId> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-biz-dict</artifactId> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-biz-data-permission</artifactId> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-biz-social</artifactId> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-biz-tenant</artifactId> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-biz-ip</artifactId> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-biz-weixin</artifactId> |
||||
|
</dependency> |
||||
|
|
||||
|
<!-- Web 相关 --> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-security</artifactId> |
||||
|
</dependency> |
||||
|
|
||||
|
<dependency> |
||||
|
<groupId>org.springframework.boot</groupId> |
||||
|
<artifactId>spring-boot-starter-validation</artifactId> |
||||
|
</dependency> |
||||
|
|
||||
|
<!-- DB 相关 --> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-mybatis</artifactId> |
||||
|
</dependency> |
||||
|
|
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-redis</artifactId> |
||||
|
</dependency> |
||||
|
|
||||
|
<!-- Job 定时任务相关 --> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-job</artifactId> |
||||
|
</dependency> |
||||
|
|
||||
|
<!-- 消息队列相关 --> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-mq</artifactId> |
||||
|
</dependency> |
||||
|
|
||||
|
<!-- Test 测试相关 --> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-test</artifactId> |
||||
|
<scope>test</scope> |
||||
|
</dependency> |
||||
|
|
||||
|
<!-- 工具类相关 --> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-excel</artifactId> |
||||
|
</dependency> |
||||
|
|
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-captcha</artifactId> |
||||
|
</dependency> |
||||
|
|
||||
|
<dependency> |
||||
|
<groupId>org.springframework.boot</groupId> |
||||
|
<artifactId>spring-boot-starter-mail</artifactId> |
||||
|
</dependency> |
||||
|
</dependencies> |
||||
|
|
||||
|
</project> |
@ -0,0 +1,23 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" |
||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
||||
|
<parent> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win</artifactId> |
||||
|
<version>${revision}</version> |
||||
|
</parent> |
||||
|
<modelVersion>4.0.0</modelVersion> |
||||
|
<modules> |
||||
|
<module>win-module-scp-api</module> |
||||
|
<module>win-module-scp-biz</module> |
||||
|
</modules> |
||||
|
<artifactId>win-module-scp</artifactId> |
||||
|
<packaging>pom</packaging> |
||||
|
|
||||
|
<name>${project.artifactId}</name> |
||||
|
<description> |
||||
|
scp 模块下,我们放通用业务,支撑上层的核心业务。 |
||||
|
</description> |
||||
|
|
||||
|
</project> |
@ -0,0 +1,34 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" |
||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
||||
|
<parent> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-module-scp</artifactId> |
||||
|
<version>${revision}</version> |
||||
|
</parent> |
||||
|
<modelVersion>4.0.0</modelVersion> |
||||
|
<artifactId>win-module-scp-api</artifactId> |
||||
|
<packaging>jar</packaging> |
||||
|
|
||||
|
<name>${project.artifactId}</name> |
||||
|
<description> |
||||
|
scp 模块 API,暴露给其它模块调用 |
||||
|
</description> |
||||
|
|
||||
|
<dependencies> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-common</artifactId> |
||||
|
</dependency> |
||||
|
|
||||
|
<!-- 参数校验 --> |
||||
|
<dependency> |
||||
|
<groupId>org.springframework.boot</groupId> |
||||
|
<artifactId>spring-boot-starter-validation</artifactId> |
||||
|
<optional>true</optional> |
||||
|
</dependency> |
||||
|
|
||||
|
</dependencies> |
||||
|
|
||||
|
</project> |
@ -0,0 +1,4 @@ |
|||||
|
/** |
||||
|
* System API 包,定义暴露给其它模块的 API |
||||
|
*/ |
||||
|
package com.win.scp.api; |
@ -0,0 +1,123 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" |
||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
||||
|
<parent> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-module-scp</artifactId> |
||||
|
<version>${revision}</version> |
||||
|
</parent> |
||||
|
<modelVersion>4.0.0</modelVersion> |
||||
|
<artifactId>win-module-scp-biz</artifactId> |
||||
|
<packaging>jar</packaging> |
||||
|
|
||||
|
<name>${project.artifactId}</name> |
||||
|
<description> |
||||
|
scp 模块下,我们放通用业务,支撑上层的核心业务。 |
||||
|
</description> |
||||
|
|
||||
|
<dependencies> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-module-system-api</artifactId> |
||||
|
<version>${revision}</version> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-module-infra-api</artifactId> |
||||
|
<version>${revision}</version> |
||||
|
</dependency> |
||||
|
|
||||
|
<!-- 业务组件 --> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-biz-operatelog</artifactId> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-biz-sms</artifactId> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-biz-dict</artifactId> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-biz-data-permission</artifactId> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-biz-social</artifactId> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-biz-tenant</artifactId> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-biz-ip</artifactId> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-biz-weixin</artifactId> |
||||
|
</dependency> |
||||
|
|
||||
|
<!-- Web 相关 --> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-security</artifactId> |
||||
|
</dependency> |
||||
|
|
||||
|
<dependency> |
||||
|
<groupId>org.springframework.boot</groupId> |
||||
|
<artifactId>spring-boot-starter-validation</artifactId> |
||||
|
</dependency> |
||||
|
|
||||
|
<!-- DB 相关 --> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-mybatis</artifactId> |
||||
|
</dependency> |
||||
|
|
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-redis</artifactId> |
||||
|
</dependency> |
||||
|
|
||||
|
<!-- Job 定时任务相关 --> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-job</artifactId> |
||||
|
</dependency> |
||||
|
|
||||
|
<!-- 消息队列相关 --> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-mq</artifactId> |
||||
|
</dependency> |
||||
|
|
||||
|
<!-- Test 测试相关 --> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-test</artifactId> |
||||
|
<scope>test</scope> |
||||
|
</dependency> |
||||
|
|
||||
|
<!-- 工具类相关 --> |
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-excel</artifactId> |
||||
|
</dependency> |
||||
|
|
||||
|
<dependency> |
||||
|
<groupId>com.win</groupId> |
||||
|
<artifactId>win-spring-boot-starter-captcha</artifactId> |
||||
|
</dependency> |
||||
|
|
||||
|
<dependency> |
||||
|
<groupId>org.springframework.boot</groupId> |
||||
|
<artifactId>spring-boot-starter-mail</artifactId> |
||||
|
</dependency> |
||||
|
</dependencies> |
||||
|
|
||||
|
</project> |
@ -0,0 +1,4 @@ |
|||||
|
/** |
||||
|
* System API 包,定义暴露给其它模块的 API |
||||
|
*/ |
||||
|
package com.win.scp.api; |
Loading…
Reference in new issue