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,4 @@
/**
* 对象转换(使用 MapStruct
*/
package com.viewsh.module.ops.convert;

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,6 @@
/**
* [核心层] ops-biz 模块,工单引擎实现、公共运营逻辑映射、配置
*
* 实现 ops-api 中定义的契约,提供工单引擎核心服务
*/
package com.viewsh.module.ops;

View File

@@ -0,0 +1,4 @@
/**
* 工单引擎核心服务层
*/
package com.viewsh.module.ops.service;