Commit f81a2a95 by huangfusuper

补批参数 增加属性工作空间名称

parent a569cdae
......@@ -19,6 +19,10 @@ import java.util.Map;
@NoArgsConstructor
public class SpecialJobParam {
/**
* 工作空间名称
*/
private String workspaceName;
/**
* 根据工作流名称
*/
private String flowName;
......
......@@ -225,7 +225,7 @@ public class JobUtils {
public static ResponseResult specialRequestRepairflow(SpecialJobParam specialJobParam) {
log.debug("-------------特殊的补批工作流运行{}----------------------",specialJobParam);
String response = createHttpRequest(FIND_FLOW_RESULT, "param=" + JSON.toJSONString(specialJobParam, WriteClassName));
String response = createHttpRequest(SPECIAL_REQUEST_REPAIRFLOW, "param=" + JSON.toJSONString(specialJobParam, WriteClassName));
log.debug("-------------特殊的补批工作流运行完成:{}----------------------",response);
return JSON.parseObject(response, ResponseResult.class);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment