File was renamed from flowable/src/main/java/com/ycl/service/FlowLogService.java |
| | |
| | | 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; |
| | | |
| | | /** |
| | |
| | | * @author xp |
| | | * @since 2025-01-02 |
| | | */ |
| | | public interface FlowLogService extends IService<FlowLog> { |
| | | public interface ProcessLogService extends IService<ProcessLog> { |
| | | |
| | | /** |
| | | * 添加 |
| | |
| | | * @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); |
| | | |
| | | /** |
| | | * 批量删除 |
| | |
| | | * @param query |
| | | * @return |
| | | */ |
| | | Result page(FlowLogQuery query); |
| | | Result page(ProcessLogQuery query); |
| | | |
| | | /** |
| | | * 根据id查找 |