From e8a7beb5455d0c9f50f93004b600dd2781ad6bfd Mon Sep 17 00:00:00 2001 From: baoshiwei <baoshiwei@shlanbao.cn> Date: 星期一, 30 六月 2025 09:36:56 +0800 Subject: [PATCH] feat(空调控制): 实现空调控制功能并优化 SVG 数据加载- 新增 AirCondConstants 类,定义空调控制常量 - 修改 AirConditionerServiceImpl,使用常量替代硬编码值 - 更新 MQTT 消息发送逻辑,使用常量定义主题 - 优化 SVG 数据加载和处理逻辑,改进标签值更新方式 - 调整域名地址配置,支持生产环境 API --- zhitan-common/pom.xml | 33 +++++++++++++++++++++++++++++++++ 1 files changed, 33 insertions(+), 0 deletions(-) diff --git a/zhitan-common/pom.xml b/zhitan-common/pom.xml index 53e470c..517c61c 100644 --- a/zhitan-common/pom.xml +++ b/zhitan-common/pom.xml @@ -133,7 +133,40 @@ <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> </dependency> +<!-- <dependency>--> +<!-- <groupId>cn.hutool</groupId>--> +<!-- <artifactId>hutool-core</artifactId>--> +<!-- <version>5.8.21</version>--> +<!-- </dependency>--> +<!-- <dependency>--> +<!-- <groupId>cn.hutool</groupId>--> +<!-- <artifactId>hutool-http</artifactId>--> +<!-- <version>5.8.21</version>--> +<!-- </dependency>--> + <dependency> + <groupId>cn.hutool</groupId> + <artifactId>hutool-all</artifactId> + <version>5.8.28</version> + <!-- 寮哄埗澹版槑鐗堟湰浼樺厛绾� --> + <optional>true</optional> + </dependency> +<!-- <dependency>--> +<!-- <groupId>cn.hutool</groupId>--> +<!-- <artifactId>hutool-extra</artifactId>--> +<!-- <version>5.8.21</version>--> +<!-- </dependency>--> + + <dependency> + <groupId>me.zhyd.oauth</groupId> + <artifactId>JustAuth</artifactId> + <version>1.16.7</version> + </dependency> + <dependency> + <groupId>io.github.linpeilie</groupId> + <artifactId>mapstruct-plus-spring-boot-starter</artifactId> + <version>1.4.6</version> + </dependency> </dependencies> </project> \ No newline at end of file -- Gitblit v1.9.3