feat:新增WMS模块。新增仓储CRUD

This commit is contained in:
zhouz
2026-07-17 09:26:34 +08:00
parent 012f792b22
commit 5b643a44b4
24 changed files with 2505 additions and 0 deletions

25
nl-module-wms/pom.xml Normal file
View File

@@ -0,0 +1,25 @@
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>cn.nl.cloud</groupId>
<artifactId>nl</artifactId>
<version>${revision}</version>
</parent>
<artifactId>nl-module-wms</artifactId>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<description>
wms 模块下我们放仓储的核心业务提供API。
</description>
<modules>
<module>nl-module-wms-api</module>
<module>nl-module-wms-server</module>
</modules>
</project>