企标制修订计划管控 (接收任务)
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user