| | |
| | | import org.dromara.common.translation.annotation.Translation; |
| | | import org.dromara.common.translation.constant.TransConstant; |
| | | |
| | | import java.io.Serial; |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | |
| | | * @author may |
| | | */ |
| | | @Data |
| | | public class TaskVo { |
| | | public class TaskVo implements Serializable { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 任务id |
| | |
| | | private Date createTime; |
| | | |
| | | /** |
| | | * 已办任务-创建时间 |
| | | */ |
| | | private Date startTime; |
| | | |
| | | /** |
| | | * 结束时间 |
| | | */ |
| | | private Date endTime; |
| | |
| | | private String processDefinitionKey; |
| | | |
| | | /** |
| | | * 流程定义版本 |
| | | */ |
| | | private Integer processDefinitionVersion; |
| | | |
| | | /** |
| | | * 参与者 |
| | | */ |
| | | private ParticipantVo participantVo; |
| | |
| | | * 是否会签 |
| | | */ |
| | | private Boolean multiInstance; |
| | | |
| | | /** |
| | | * 业务id |
| | | */ |
| | | private String businessKey; |
| | | |
| | | /** |
| | | * 流程定义配置 |
| | | */ |
| | | private WfDefinitionConfigVo wfDefinitionConfigVo; |
| | | |
| | | /** |
| | | * 节点配置 |
| | | */ |
| | | private WfNodeConfigVo wfNodeConfigVo; |
| | | } |