将config模块改为进销存模块

This commit is contained in:
1378012178@qq.com 2025-03-24 11:28:23 +08:00
parent ba33c3487e
commit dedcf58a38
73 changed files with 18 additions and 13 deletions

View File

@ -4,11 +4,11 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>com.nursingunit.boot</groupId>
<artifactId>nu-config-api</artifactId>
<artifactId>nu-invoicing-api</artifactId>
<version>2.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>nu-config-local-api</artifactId>
<artifactId>nu-invoicing-local-api</artifactId>
</project>

View File

@ -4,16 +4,16 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>com.nursingunit.boot</groupId>
<artifactId>nursing-unit-config</artifactId>
<artifactId>nursing-unit-invoicing</artifactId>
<version>2.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>nu-config-api</artifactId>
<artifactId>nu-invoicing-api</artifactId>
<packaging>pom</packaging>
<modules>
<module>nu-config-local-api</module>
<module>nu-invoicing-local-api</module>
</modules>
<dependencies>

View File

@ -3,17 +3,17 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>com.nursingunit.boot</groupId>
<artifactId>nursing-unit-config</artifactId>
<artifactId>nursing-unit-invoicing</artifactId>
<version>2.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>nu-config-biz</artifactId>
<artifactId>nu-invoicing-biz</artifactId>
<dependencies>
<dependency>
<groupId>com.nursingunit.boot</groupId>
<artifactId>nu-config-local-api</artifactId>
<artifactId>nu-invoicing-local-api</artifactId>
<version>${nursingunit.version}</version>
</dependency>
<dependency>

View File

@ -9,12 +9,12 @@
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>nursing-unit-config</artifactId>
<artifactId>nursing-unit-invoicing</artifactId>
<packaging>pom</packaging>
<modules>
<module>nu-config-api</module>
<module>nu-config-biz</module>
<module>nu-invoicing-api</module>
<module>nu-invoicing-biz</module>
</modules>
</project>

View File

@ -27,7 +27,7 @@
<!-- CONFIG 模块 -->
<dependency>
<groupId>com.nursingunit.boot</groupId>
<artifactId>nu-config-biz</artifactId>
<artifactId>nu-invoicing-biz</artifactId>
<version>${nursingunit.version}</version>
</dependency>
<!-- IOT 摄像头 模块 -->

View File

@ -68,10 +68,15 @@
</properties>
<modules>
<!-- 框架基础包模块 -->
<module>nursing-unit-base-core</module>
<!-- 框架demo功能模块 -->
<module>nursing-unit-demo</module>
<module>nursing-unit-config</module>
<!-- 进销存 -->
<module>nursing-unit-invoicing</module>
<!-- 摄像头 -->
<module>nursing-unit-iot</module>
<!-- 系统模块 -->
<module>nursing-unit-system</module>
</modules>