chore: ops模块构建(业务运营)- 主要实现 基础建设、保洁、安保、工程、客服 等功能

This commit is contained in:
lzh
2025-12-31 16:49:44 +08:00
parent dd7c1e097b
commit 16f0b71ead
53 changed files with 1307 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
<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>
</dependencies>
</project>

View File

@@ -0,0 +1,4 @@
/**
* 对象转换(使用 MapStruct
*/
package com.viewsh.module.ops.security.convert;

View File

@@ -0,0 +1,5 @@
/**
* 数据对象DO对应数据库表
* 表名以 ops_security_ 开头
*/
package com.viewsh.module.ops.security.dal.dataobject;

View File

@@ -0,0 +1,4 @@
/**
* MySQL Mapper 接口,对应数据库操作
*/
package com.viewsh.module.ops.security.dal.mysql;

View File

@@ -0,0 +1,4 @@
/**
* 数据访问层
*/
package com.viewsh.module.ops.security.dal;

View File

@@ -0,0 +1,6 @@
/**
* [业务层] 安保条线实现:巡更、报警、岗位
*
* 依赖 ops-api 使用工单的 DTO依赖 ops-biz 调用工单引擎的 Service
*/
package com.viewsh.module.ops.security;

View File

@@ -0,0 +1,4 @@
/**
* 安保条线服务层:巡更、报警、岗位
*/
package com.viewsh.module.ops.security.service;