package org.dromara.workflow.domain.bo;
|
|
import jakarta.validation.constraints.NotBlank;
|
import lombok.Data;
|
import org.dromara.common.core.validate.AddGroup;
|
import org.dromara.workflow.domain.vo.WfCopy;
|
|
import java.io.Serial;
|
import java.io.Serializable;
|
import java.util.HashMap;
|
import java.util.List;
|
import java.util.Map;
|
import java.util.Objects;
|
|
/**
|
* 办理任务请求对象
|
*
|
* @author may
|
*/
|
@Data
|
public class CompleteTaskBo implements Serializable {
|
|
@Serial
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 任务id
|
*/
|
@NotBlank(message = "任务id不能为空", groups = {AddGroup.class})
|
private String taskId;
|
|
/**
|
* 附件id
|
*/
|
private String fileId;
|
|
/**
|
* 抄送人员
|
*/
|
private List<WfCopy> wfCopyList;
|
|
/**
|
* 消息类型
|
*/
|
private List<String> messageType;
|
|
/**
|
* 办理意见
|
*/
|
private String message;
|
|
/**
|
* 流程变量
|
*/
|
private Map<String, Object> variables;
|
|
public Map<String, Object> getVariables() {
|
if (variables == null) {
|
return new HashMap<>(16);
|
}
|
variables.entrySet().removeIf(entry -> Objects.isNull(entry.getValue()));
|
return variables;
|
}
|
|
}
|