package com.hotent.runtime.vo; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; /** * @Author: Cola * @Date: 2021/08/18/15:34 * @Description: **/ @ApiModel(value="流程管理对象") public class FlowManagerVo { @ApiModelProperty(name="taskId",notes="任务ID",required=false) private String taskId; @ApiModelProperty(name="defId",notes="defID",required=false) private String defId; @ApiModelProperty(name="instId",notes="instId",required=false) private String instId; @ApiModelProperty(name="data",notes="dataID",required=false) private String data; @ApiModelProperty(name="type",notes="跳转类型",required=false) private String type; public String getTaskId() { return taskId; } public void setTaskId(String taskId) { this.taskId = taskId; } public String getDefId() { return defId; } public void setDefId(String defId) { this.defId = defId; } public String getInstId() { return instId; } public void setInstId(String instId) { this.instId = instId; } public String getData() { return data; } public void setData(String data) { this.data = data; } public String getType() { return type; } public void setType(String type) { this.type = type; } }