refactor(ops): 服务层调整,统一使用设备ID
- CleanOrderService: 将所有 cleanerId 参数改为 deviceId - CleanOrderAutoCreateReqDTO: 新增 triggerData 字段 - EventPublishHandler: 添加 assigneeId/urgentOrderId 到 payload - OrderQueueService: 修正注释说明 userId 实际为 deviceId - EventDomain: 新增 AUDIT 域 - 更新测试用例适配接口变更 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -8,7 +8,7 @@ import java.util.List;
|
||||
/**
|
||||
* 工单队列管理服务接口
|
||||
* 提供工单队列的核心管理功能,包括入队、出队、状态变更、优先级调整等
|
||||
*
|
||||
* @deprecated userId 参数实际存储的是工牌设备ID
|
||||
* @author lzh
|
||||
*/
|
||||
public interface OrderQueueService {
|
||||
@@ -18,7 +18,7 @@ public interface OrderQueueService {
|
||||
* 将工单加入派单队列,等待派单
|
||||
*
|
||||
* @param opsOrderId 工单ID
|
||||
* @param userId 执行人员ID(保洁员)
|
||||
* @param userId 执行人员ID((保洁员/工牌设备ID))
|
||||
* @param priority 优先级
|
||||
* @param queueIndex 队列顺序(可选,用于同优先级排序)
|
||||
* @return 队列记录ID
|
||||
|
||||
Reference in New Issue
Block a user