xiangpei
2025-01-15 317a22981eaea13ab6e23f7356ec1333755eb263
business/src/main/java/com/ycl/domain/vo/CustomerTaskVO.java
@@ -1,9 +1,11 @@
package com.ycl.domain.vo;
import com.ycl.common.enums.business.HandlerTypeEnum;
import com.ycl.common.enums.business.TaskStatusEnum;
import lombok.Data;
import java.util.Date;
import java.util.List;
/**
 * 任务回显内容
@@ -18,6 +20,11 @@
     * flowable中的任务id
     */
    private String taskId;
    /**
     * 任务定义id
     */
    private String taskDefinitionKey;
    /**
     * flowable流程实例id
@@ -52,7 +59,7 @@
    /**
     * 发起人id
     */
    private Long promoterId;
    private String promoterId;
    /**
     * 发起人姓名
@@ -62,7 +69,7 @@
    /**
     * 发起人单位
     */
    private Long promoterUnitId;
    private String promoterUnitId;
    /**
     * 发起人单位名称
@@ -72,22 +79,32 @@
    /**
     * 处理人
     */
    private String handlerName;
    private List<String> handlerName;
    /**
     * 发起人id
     * 处理人id
     */
    private Long handlerId;
    private List<Long> handlerId;
    /**
     * 处理人单位id
     */
    private Long handlerUnitId;
    private List<Long> handlerUnitId;
    /**
     * 处理人单位名称
     */
    private String handlerUnitName;
    private List<String> handlerUnitName;
    /**
     * 实际处理人id
     */
    private String actualHandlerUserId;
    /**
     * 实际处理人姓名
     */
    private String actualHandlerUserName;
    /**
     * 办理期限
@@ -108,4 +125,10 @@
     * 任务创建时间
     */
    private Date createTime;
    /**
     * 处理人类型
     *
     */
    private HandlerTypeEnum handlerType;
}