From 69e3afc7707d467b758858b52d3784947f7a502b Mon Sep 17 00:00:00 2001 From: 疯狂的狮子Li <15040126243@163.com> Date: 星期一, 20 五月 2024 10:25:23 +0800 Subject: [PATCH] !538 ♥️发布 5.2.0-BETA 公测版本 Merge pull request !538 from 疯狂的狮子Li/dev --- ruoyi-modules/ruoyi-workflow/src/main/java/org/dromara/workflow/domain/vo/TaskVo.java | 173 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 173 insertions(+), 0 deletions(-) diff --git a/ruoyi-modules/ruoyi-workflow/src/main/java/org/dromara/workflow/domain/vo/TaskVo.java b/ruoyi-modules/ruoyi-workflow/src/main/java/org/dromara/workflow/domain/vo/TaskVo.java new file mode 100644 index 0000000..466e776 --- /dev/null +++ b/ruoyi-modules/ruoyi-workflow/src/main/java/org/dromara/workflow/domain/vo/TaskVo.java @@ -0,0 +1,173 @@ +package org.dromara.workflow.domain.vo; + +import lombok.Data; +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 implements Serializable { + + @Serial + private static final long serialVersionUID = 1L; + + /** + * 浠诲姟id + */ + private String id; + + /** + * 浠诲姟鍚嶇О + */ + private String name; + + /** + * 鎻忚堪 + */ + private String description; + + /** + * 浼樺厛绾� + */ + private Integer priority; + + /** + * 璐熻矗姝や换鍔$殑浜哄憳鐨勭敤鎴穒d + */ + private String owner; + + /** + * 鍔炵悊浜篿d + */ + private Long assignee; + + /** + * 鍔炵悊浜� + */ + @Translation(type = TransConstant.USER_ID_TO_NICKNAME, mapper = "assignee") + private String assigneeName; + + + /** + * 娴佺▼瀹炰緥id + */ + private String processInstanceId; + + /** + * 鎵цid + */ + private String executionId; + + /** + * 鏃犵敤 + */ + private String taskDefinitionId; + + /** + * 娴佺▼瀹氫箟id + */ + private String processDefinitionId; + + /** + * 鍒涘缓鏃堕棿 + */ + private Date createTime; + + /** + * 宸插姙浠诲姟-鍒涘缓鏃堕棿 + */ + private Date startTime; + + /** + * 缁撴潫鏃堕棿 + */ + private Date endTime; + + /** + * 鑺傜偣id + */ + private String taskDefinitionKey; + + /** + * 浠诲姟鎴鏃ユ湡 + */ + private Date dueDate; + + /** + * 娴佺▼绫诲埆 + */ + private String category; + + /** + * 鐖剁骇浠诲姟id + */ + private String parentTaskId; + + /** + * 绉熸埛id + */ + private String tenantId; + + /** + * 璁ら鏃堕棿 + */ + private Date claimTime; + + /** + * 娴佺▼鐘舵�� + */ + private String businessStatus; + + /** + * 娴佺▼鐘舵�� + */ + private String businessStatusName; + + /** + * 娴佺▼瀹氫箟鍚嶇О + */ + private String processDefinitionName; + + /** + * 娴佺▼瀹氫箟key + */ + private String processDefinitionKey; + + /** + * 娴佺▼瀹氫箟鐗堟湰 + */ + private Integer processDefinitionVersion; + + /** + * 鍙備笌鑰� + */ + private ParticipantVo participantVo; + + /** + * 鏄惁浼氱 + */ + private Boolean multiInstance; + + /** + * 涓氬姟id + */ + private String businessKey; + + /** + * 娴佺▼瀹氫箟閰嶇疆 + */ + private WfDefinitionConfigVo wfDefinitionConfigVo; + + /** + * 鑺傜偣閰嶇疆 + */ + private WfNodeConfigVo wfNodeConfigVo; +} -- Gitblit v1.9.3