新增设备管理模块

This commit is contained in:
2025-09-24 13:29:10 +08:00
parent f278056c80
commit 069c1664ca
111 changed files with 11916 additions and 1 deletions

15
pom.xml
View File

@@ -49,6 +49,8 @@
<!-- SMS 配置 -->
<aliyun.sms.version>2.0.23</aliyun.sms.version>
<tencent.sms.version>3.1.687</tencent.sms.version>
<commons.collections.version>3.2.2</commons.collections.version>
<com.github.pagehelper.version>1.4.1</com.github.pagehelper.version>
</properties>
<profiles>
@@ -91,7 +93,12 @@
<!-- 依赖声明 -->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>${commons.collections.version}</version>
</dependency>
<!-- SpringBoot的依赖配置-->
<dependency>
<groupId>org.springframework.boot</groupId>
@@ -100,7 +107,11 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>${com.github.pagehelper.version}</version>
</dependency>
<!-- hutool 的依赖配置-->
<dependency>
<groupId>cn.hutool</groupId>
@@ -382,6 +393,8 @@
<module>gear-sms</module>
<module>gear-system</module>
<module>gear-oa</module>
<module>gear-mes</module>
<module>gear-mes</module>
</modules>
<packaging>pom</packaging>