From bba21f2e4d21a2c909c0cec6eb5258fe9c5e61c3 Mon Sep 17 00:00:00 2001
From: 86158 <461356067@qq.com>
Date: Mon, 26 Jan 2026 17:49:46 +0800
Subject: [PATCH] =?UTF-8?q?feat:=E6=96=B0=E5=A2=9Ecommomn=E6=A8=A1?=
=?UTF-8?q?=E5=9D=97?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pom.xml | 1 +
yudao-module-common/pom.xml | 23 +++++++
.../yudao-module-common-api/pom.xml | 33 ++++++++++
.../yudao-module-common-biz/pom.xml | 61 +++++++++++++++++++
4 files changed, 118 insertions(+)
create mode 100644 yudao-module-common/pom.xml
create mode 100644 yudao-module-common/yudao-module-common-api/pom.xml
create mode 100644 yudao-module-common/yudao-module-common-biz/pom.xml
diff --git a/pom.xml b/pom.xml
index e4136bef4f..95e7c6e2de 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,6 +25,7 @@
yudao-module-erp
yudao-module-mes
yudao-module-iot
+ yudao-module-common
${project.artifactId}
芋道项目基础脚手架
diff --git a/yudao-module-common/pom.xml b/yudao-module-common/pom.xml
new file mode 100644
index 0000000000..3c45d90ff9
--- /dev/null
+++ b/yudao-module-common/pom.xml
@@ -0,0 +1,23 @@
+
+
+
+ cn.iocoder.boot
+ yudao
+ ${revision}
+
+ 4.0.0
+
+ yudao-module-common-api
+ yudao-module-common-biz
+
+ yudao-module-common
+ pom
+
+ ${project.artifactId}
+
+ common 模块下,存放通用的业务逻辑和工具类,供其他模块调用。
+
+
+
\ No newline at end of file
diff --git a/yudao-module-common/yudao-module-common-api/pom.xml b/yudao-module-common/yudao-module-common-api/pom.xml
new file mode 100644
index 0000000000..2e2e714596
--- /dev/null
+++ b/yudao-module-common/yudao-module-common-api/pom.xml
@@ -0,0 +1,33 @@
+
+
+
+ yudao-module-common
+ cn.iocoder.boot
+ ${revision}
+
+ 4.0.0
+
+ yudao-module-common-api
+ jar
+
+ ${project.artifactId}
+ common 模块 API,暴露给其它模块调用
+
+
+
+
+ cn.iocoder.boot
+ yudao-common
+
+
+
+
+ org.springframework.boot
+ spring-boot-starter-validation
+ true
+
+
+
+
\ No newline at end of file
diff --git a/yudao-module-common/yudao-module-common-biz/pom.xml b/yudao-module-common/yudao-module-common-biz/pom.xml
new file mode 100644
index 0000000000..418ad22816
--- /dev/null
+++ b/yudao-module-common/yudao-module-common-biz/pom.xml
@@ -0,0 +1,61 @@
+
+
+
+ yudao-module-common
+ cn.iocoder.boot
+ ${revision}
+
+ 4.0.0
+
+ yudao-module-common-biz
+ jar
+
+ ${project.artifactId}
+ common 模块业务实现
+
+
+
+
+ cn.iocoder.boot
+ yudao-module-common-api
+ ${revision}
+
+
+
+
+ cn.iocoder.boot
+ yudao-spring-boot-starter-mybatis
+
+
+ cn.iocoder.boot
+ yudao-spring-boot-starter-redis
+
+
+ cn.iocoder.boot
+ yudao-spring-boot-starter-web
+
+
+
+
+ cn.iocoder.boot
+ yudao-spring-boot-starter-biz-data-permission
+
+
+ cn.iocoder.boot
+ yudao-spring-boot-starter-biz-tenant
+
+
+ cn.iocoder.boot
+ yudao-spring-boot-starter-biz-ip
+
+
+
+
+ cn.iocoder.boot
+ yudao-spring-boot-starter-excel
+
+
+
+
\ No newline at end of file