zxl
2025-03-24 f8ce7aa161ef2ef316357ead8208bc60de938ead
flowable/src/main/java/com/ycl/domain/query/ProcessLogQuery.java
@@ -18,5 +18,40 @@
@Data
@ApiModel(value = "FlowLog查询参数", description = "流程日志查询参数")
public class ProcessLogQuery extends AbsQuery {
    /**
     * 项目id
     */
    private String projectId;
    /**
     * 任务id
     */
    private String taskId;
    /**
     * 任务定义key
     */
    private String taskDefKey;
    /**
     * 流程实例id
     */
    private String processInsId;
    /**
     * 逻辑删除
     */
    private Integer deleted = 0;
    /**
     * 查谁的
     */
    private Long userId;
    /**
     * 查哪种类型的日志
     */
    private List<String> eventTypeList;
}