Merge remote-tracking branch 'origin/dev_20230216' into dev_20230216
This commit is contained in:
@@ -486,4 +486,7 @@ public interface workFlowFeignClient {
|
|||||||
|
|
||||||
@RequestMapping(value = "/bat-wkflow/datas/bus-process-new/selectWenDan",method = RequestMethod.GET)
|
@RequestMapping(value = "/bat-wkflow/datas/bus-process-new/selectWenDan",method = RequestMethod.GET)
|
||||||
Map<String, Object> selectWenDan(@RequestParam("taskId")String taskId);
|
Map<String, Object> selectWenDan(@RequestParam("taskId")String taskId);
|
||||||
|
|
||||||
|
@RequestMapping(value = "/bat-wkflow/datas/bus-process-new/questionsAndAnswers",method = RequestMethod.GET)
|
||||||
|
BusProcessNew questionsAndAnswers(@RequestParam("askId") String askId,@RequestParam("answerer") String answerer);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -442,4 +442,8 @@ public class workFlowFeignClientImpl {
|
|||||||
public Map<String, Object> selectWenDan(@RequestParam("taskId") String taskId) {
|
public Map<String, Object> selectWenDan(@RequestParam("taskId") String taskId) {
|
||||||
return workFlowFeignClient.selectWenDan(taskId);
|
return workFlowFeignClient.selectWenDan(taskId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public BusProcessNew questionsAndAnswers(@RequestParam("askId") String askId,@RequestParam("answerer") String answerer) {
|
||||||
|
return workFlowFeignClient.questionsAndAnswers(askId,answerer);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+5
-1
@@ -1094,5 +1094,9 @@ public class WorkFlowController {
|
|||||||
}
|
}
|
||||||
return Result.success();
|
return Result.success();
|
||||||
}
|
}
|
||||||
|
@ApiOperation(value = "问答中心 个人中心 我的问答 回答无taskID问题")
|
||||||
|
@GetMapping("/questionsAndAnswers")
|
||||||
|
public BusProcessNew questionsAndAnswers(@RequestParam("askId") String askId,@RequestParam("answerer") String answerer) {
|
||||||
|
return workFlowFeignClient.questionsAndAnswers(askId,answerer);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user