¶Ô±ÈÐÂÎļþ |
| | |
| | | package org.dromara.workflow.domain.vo; |
| | | |
| | | import lombok.Data; |
| | | import org.dromara.common.translation.annotation.Translation; |
| | | import org.dromara.common.translation.constant.TransConstant; |
| | | import org.flowable.engine.task.Attachment; |
| | | |
| | | import java.io.Serial; |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * æµç¨å®¡æ¹è®°å½è§å¾ |
| | | * |
| | | * @author may |
| | | */ |
| | | @Data |
| | | public class ActHistoryInfoVo implements Serializable { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | | /** |
| | | * ä»»å¡id |
| | | */ |
| | | private String id; |
| | | /** |
| | | * èç¹id |
| | | */ |
| | | private String taskDefinitionKey; |
| | | /** |
| | | * ä»»å¡åç§° |
| | | */ |
| | | private String name; |
| | | /** |
| | | * æµç¨å®ä¾id |
| | | */ |
| | | private String processInstanceId; |
| | | /** |
| | | * å¼å§æ¶é´ |
| | | */ |
| | | private Date startTime; |
| | | /** |
| | | * ç»ææ¶é´ |
| | | */ |
| | | private Date endTime; |
| | | /** |
| | | * è¿è¡æ¶é¿ |
| | | */ |
| | | private String runDuration; |
| | | /** |
| | | * ç¶æ |
| | | */ |
| | | private String status; |
| | | /** |
| | | * ç¶æ |
| | | */ |
| | | private String statusName; |
| | | /** |
| | | * åç人id |
| | | */ |
| | | private String assignee; |
| | | |
| | | /** |
| | | * åç人åç§° |
| | | */ |
| | | @Translation(type = TransConstant.USER_ID_TO_NICKNAME, mapper = "assignee") |
| | | private String nickName; |
| | | |
| | | /** |
| | | * åç人id |
| | | */ |
| | | private String owner; |
| | | |
| | | /** |
| | | * 审æ¹ä¿¡æ¯id |
| | | */ |
| | | private String commentId; |
| | | |
| | | /** |
| | | * 审æ¹ä¿¡æ¯ |
| | | */ |
| | | private String comment; |
| | | |
| | | /** |
| | | * 审æ¹éä»¶ |
| | | */ |
| | | private List<Attachment> attachmentList; |
| | | } |