refactor: 移动 WfProcessBo.java 对象到 ruoyi-flowable 模块下,重命名为 ProcessQuery

This commit is contained in:
konbai
2022-12-11 17:27:31 +08:00
parent aa401c915d
commit 95c4d7bf3f
7 changed files with 29 additions and 29 deletions

View File

@@ -0,0 +1,33 @@
package com.ruoyi.flowable.core.domain;
import lombok.Data;
/**
* 流程查询实体对象
*
* @author KonBAI
* @createTime 2022/6/11 01:15
*/
@Data
public class ProcessQuery {
/**
* 流程标识
*/
private String processKey;
/**
* 流程名称
*/
private String processName;
/**
* 流程分类
*/
private String category;
/**
* 状态
*/
private String state;
}