企标制修订计划管控 (接收任务)

This commit is contained in:
gaojiabao
2023-03-22 13:49:55 +08:00
parent 734342e0ad
commit 23659c18a7
3 changed files with 11 additions and 0 deletions
@@ -473,4 +473,6 @@ public interface workFlowFeignClient {
void setRelation(@RequestParam("esPlanId")String esPlanId,@RequestParam("prcId") String prcId, @RequestParam("finish") String finish);
@RequestMapping(value = "/bat-wkflow/esTechRelation/getEsByWk",method = RequestMethod.GET)
String getEsByWk(@RequestParam("prcId")String prcId);
@RequestMapping(value = "/bat-wkflow/datas/bus-process-new/selectBusProcessNew",method = RequestMethod.GET)
String selectBusProcessNew(@RequestParam("taskId")String taskId);
}
@@ -418,4 +418,8 @@ public class workFlowFeignClientImpl {
public String getEsByWk(@RequestParam("prcId")String prcId) {
return workFlowFeignClient.getEsByWk(prcId);
}
public String selectBusProcessNew(@RequestParam("taskId")String taskId) {
return workFlowFeignClient.selectBusProcessNew(taskId);
}
}
@@ -953,4 +953,9 @@ public class WorkFlowController {
return workFlowFeignClient.getEsByWk(prcId);
}
@ApiOperation(value = "首页流程计划立项查询mesg")
@GetMapping("/selectBusProcessNew")
public String selectBusProcessNew(@RequestParam("taskId") String taskId) {
return workFlowFeignClient.selectBusProcessNew(taskId);
}
}