- 添加巡检告警、地图、机器人、任务、点位等实体类和服务接口 - 创建巡检模块数据库表结构,包含机器人、地图、任务等核心表 - 实现巡检告警控制器,提供增删改查和导出功能 - 配置巡检告警数据映射和查询视图 - 更新全局应用配置中的MinIO服务地址 - 在启动类中添加MyBatis扫描配置 - 重构设备配置实体类,移除冗余字段并优化注解配置
34 lines
936 B
XML
34 lines
936 B
XML
<?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>com.cmvr</groupId>
|
|
<artifactId>cmvr-iot</artifactId>
|
|
<version>3.8.9</version>
|
|
</parent>
|
|
|
|
<artifactId>cmvr-iot-inspection</artifactId>
|
|
|
|
<description>
|
|
智能巡检模块
|
|
</description>
|
|
|
|
<dependencies>
|
|
|
|
<!-- 通用工具-->
|
|
<dependency>
|
|
<groupId>com.cmvr</groupId>
|
|
<artifactId>cmvr-iot-common</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 测试模块-->
|
|
<dependency>
|
|
<groupId>com.cmvr</groupId>
|
|
<artifactId>cmvr-iot-test</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</project>
|