From e870ae252f020b745bb6eb1b0f6f74ff29fa79bc Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期五, 17 一月 2025 11:46:41 +0800 Subject: [PATCH] 事件新增日志 --- flowable/src/main/java/com/ycl/service/ProcessLogService.java | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/flowable/src/main/java/com/ycl/service/FlowLogService.java b/flowable/src/main/java/com/ycl/service/ProcessLogService.java similarity index 74% rename from flowable/src/main/java/com/ycl/service/FlowLogService.java rename to flowable/src/main/java/com/ycl/service/ProcessLogService.java index 1c2727f..442b0fa 100644 --- a/flowable/src/main/java/com/ycl/service/FlowLogService.java +++ b/flowable/src/main/java/com/ycl/service/ProcessLogService.java @@ -1,10 +1,10 @@ package com.ycl.service; -import com.ycl.common.enums.business.FlowLogEventTypeEnum; -import com.ycl.domain.entity.FlowLog; +import com.ycl.common.enums.business.ProcessLogEventTypeEnum; +import com.ycl.domain.entity.ProcessLog; import com.baomidou.mybatisplus.extension.service.IService; import com.ycl.common.base.Result; -import com.ycl.domain.query.FlowLogQuery; +import com.ycl.domain.query.ProcessLogQuery; import java.util.List; /** @@ -13,7 +13,7 @@ * @author xp * @since 2025-01-02 */ -public interface FlowLogService extends IService<FlowLog> { +public interface ProcessLogService extends IService<ProcessLog> { /** * 娣诲姞 @@ -23,7 +23,7 @@ * @param projectId 椤圭洰id * @param eventDataJson json鎵╁睍鍐呭 */ - void add(String taskId, String flowInsId, FlowLogEventTypeEnum eventType, Long projectId, String eventDataJson); + void add(String taskId, String flowInsId, ProcessLogEventTypeEnum eventType, Long projectId, String eventDataJson); /** * 鎵归噺鍒犻櫎 @@ -44,7 +44,7 @@ * @param query * @return */ - Result page(FlowLogQuery query); + Result page(ProcessLogQuery query); /** * 鏍规嵁id鏌ユ壘 -- Gitblit v1.8.0