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; }