xiangpei
2025-01-17 e870ae252f020b745bb6eb1b0f6f74ff29fa79bc
flowable/src/main/java/com/ycl/service/ProcessLogService.java
File was renamed from flowable/src/main/java/com/ycl/service/FlowLogService.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查找