
9 changed files with 221 additions and 14 deletions
@ -0,0 +1,26 @@ |
|||||
|
package com.yxt.anrui.flowable.api.flow; |
||||
|
|
||||
|
import io.swagger.annotations.ApiModel; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
@ApiModel("工作流数据") |
||||
|
@Data |
||||
|
public class FlowDto { |
||||
|
|
||||
|
@ApiModelProperty("业务sid") |
||||
|
private String businessSid; |
||||
|
|
||||
|
@ApiModelProperty("意见") |
||||
|
private String comment; |
||||
|
|
||||
|
@ApiModelProperty("流程实例id") |
||||
|
private String instanceId; |
||||
|
|
||||
|
@ApiModelProperty("任务id") |
||||
|
private String taskId; |
||||
|
@ApiModelProperty("流程定义id") |
||||
|
private String modelId; |
||||
|
@ApiModelProperty("下一环节的代办人sid") |
||||
|
private String nextNodeUserSids; |
||||
|
} |
@ -0,0 +1,34 @@ |
|||||
|
package com.yxt.anrui.flowable.api.flow; |
||||
|
|
||||
|
import java.util.Map; |
||||
|
|
||||
|
public class StartProcessDto { |
||||
|
|
||||
|
private String proDefId; |
||||
|
private String userSid; |
||||
|
private Map<String, Object> variables; |
||||
|
|
||||
|
public String getProDefId() { |
||||
|
return proDefId; |
||||
|
} |
||||
|
|
||||
|
public void setProDefId(String proDefId) { |
||||
|
this.proDefId = proDefId; |
||||
|
} |
||||
|
|
||||
|
public String getUserSid() { |
||||
|
return userSid; |
||||
|
} |
||||
|
|
||||
|
public void setUserSid(String userSid) { |
||||
|
this.userSid = userSid; |
||||
|
} |
||||
|
|
||||
|
public Map<String, Object> getVariables() { |
||||
|
return variables; |
||||
|
} |
||||
|
|
||||
|
public void setVariables(Map<String, Object> variables) { |
||||
|
this.variables = variables; |
||||
|
} |
||||
|
} |
@ -0,0 +1,70 @@ |
|||||
|
package com.yxt.anrui.flowable.api.flow; |
||||
|
|
||||
|
import com.yxt.anrui.flowable.api.utils.ProcDefEnum; |
||||
|
|
||||
|
public class UpdateFlowFieldVo { |
||||
|
|
||||
|
private String sid; |
||||
|
private String procDefId; |
||||
|
private String nodeState; |
||||
|
private String procInsId; |
||||
|
private String taskDefKey; |
||||
|
private String taskId; |
||||
|
private String nextNodeUserSids; |
||||
|
|
||||
|
public String getNextNodeUserSids() { |
||||
|
return nextNodeUserSids; |
||||
|
} |
||||
|
|
||||
|
public void setNextNodeUserSids(String nextNodeUserSids) { |
||||
|
this.nextNodeUserSids = nextNodeUserSids; |
||||
|
} |
||||
|
|
||||
|
public String getSid() { |
||||
|
return sid; |
||||
|
} |
||||
|
|
||||
|
public void setSid(String sid) { |
||||
|
this.sid = sid; |
||||
|
} |
||||
|
|
||||
|
public String getProcDefId() { |
||||
|
return procDefId; |
||||
|
} |
||||
|
|
||||
|
public void setProcDefId(String procDefId) { |
||||
|
this.procDefId = procDefId; |
||||
|
} |
||||
|
|
||||
|
public String getNodeState() { |
||||
|
return nodeState; |
||||
|
} |
||||
|
|
||||
|
public void setNodeState(String nodeState) { |
||||
|
this.nodeState = nodeState; |
||||
|
} |
||||
|
|
||||
|
public String getProcInsId() { |
||||
|
return procInsId; |
||||
|
} |
||||
|
|
||||
|
public void setProcInsId(String procInsId) { |
||||
|
this.procInsId = procInsId; |
||||
|
} |
||||
|
|
||||
|
public String getTaskDefKey() { |
||||
|
return taskDefKey; |
||||
|
} |
||||
|
|
||||
|
public void setTaskDefKey(String taskDefKey) { |
||||
|
this.taskDefKey = taskDefKey; |
||||
|
} |
||||
|
|
||||
|
public String getTaskId() { |
||||
|
return taskId; |
||||
|
} |
||||
|
|
||||
|
public void setTaskId(String taskId) { |
||||
|
this.taskId = taskId; |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue