Files
aiot-platform-cloud/viewsh-module-ops/viewsh-module-security-biz/pom.xml
lzh 4a7128321e feat(ops): 安保模块构建配置与枚举扩展
- security-biz pom 新增 ops-biz、iot-api 依赖
- ops-server pom 引入 security-biz 模块
- 新增 SECURITY_GUARD 操作人类型、ALARM 来源类型
- 新增安保相关错误码
- dev/local 配置新增安保数据源

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-11 17:33:55 +08:00

60 lines
2.0 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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.viewsh</groupId>
<artifactId>viewsh-module-ops</artifactId>
<version>${revision}</version>
</parent>
<artifactId>viewsh-module-security-biz</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>
[业务层] 安保条线实现:巡更、报警、岗位
依赖 ops-api 使用工单的 DTO依赖 ops-biz 调用工单引擎的 Service
</description>
<dependencies>
<!-- 依赖 ops-api使用工单的 DTO -->
<dependency>
<groupId>com.viewsh</groupId>
<artifactId>viewsh-module-ops-api</artifactId>
<version>${revision}</version>
</dependency>
<!-- 依赖 ops-biz调用工单引擎的 Service -->
<dependency>
<groupId>com.viewsh</groupId>
<artifactId>viewsh-module-ops-biz</artifactId>
<version>${revision}</version>
</dependency>
<!-- DB 相关 -->
<dependency>
<groupId>com.viewsh</groupId>
<artifactId>viewsh-spring-boot-starter-mybatis</artifactId>
</dependency>
<!-- Redis 相关 -->
<dependency>
<groupId>com.viewsh</groupId>
<artifactId>viewsh-spring-boot-starter-redis</artifactId>
</dependency>
<!-- 业务组件 -->
<dependency>
<groupId>com.viewsh</groupId>
<artifactId>viewsh-spring-boot-starter-biz-tenant</artifactId>
</dependency>
<!-- Test 测试相关 -->
<dependency>
<groupId>com.viewsh</groupId>
<artifactId>viewsh-spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>