feat: There is no way the
This commit is contained in:
@@ -17,6 +17,9 @@ import java.util.Set;
|
|||||||
//@FeignClient(value = "shan6")
|
//@FeignClient(value = "shan6")
|
||||||
public interface workFlowFeignClient {
|
public interface workFlowFeignClient {
|
||||||
|
|
||||||
|
@RequestMapping(value = "/bat-wkflow/oaTaskExec/execTask",method = RequestMethod.GET)
|
||||||
|
Map<String,Object> execTask(@RequestParam("todoId") String todoId);
|
||||||
|
|
||||||
@RequestMapping(value = "/bat-wkflow/task/get_verify_by_instance",method = RequestMethod.GET)
|
@RequestMapping(value = "/bat-wkflow/task/get_verify_by_instance",method = RequestMethod.GET)
|
||||||
Map<String,Object> get_verify_by_instance(@RequestParam("taskId") String taskId, @RequestParam("pId") String pId);
|
Map<String,Object> get_verify_by_instance(@RequestParam("taskId") String taskId, @RequestParam("pId") String pId);
|
||||||
|
|
||||||
|
|||||||
@@ -25,6 +25,11 @@ public class workFlowFeignClientImpl {
|
|||||||
@Autowired
|
@Autowired
|
||||||
private IUserEOService userEOService;
|
private IUserEOService userEOService;
|
||||||
|
|
||||||
|
public Map<String,Object> execTask(@RequestParam("todoId") String todoId){
|
||||||
|
Map<String,Object> stringWrapper = workFlowFeignClient.execTask(todoId);
|
||||||
|
return stringWrapper;
|
||||||
|
}
|
||||||
|
|
||||||
public Map<String,Object> get_verify_by_instance(@RequestParam("taskId") String taskId, @RequestParam("pId") String pId){
|
public Map<String,Object> get_verify_by_instance(@RequestParam("taskId") String taskId, @RequestParam("pId") String pId){
|
||||||
Map<String,Object> stringWrapper = workFlowFeignClient.get_verify_by_instance(taskId,pId);
|
Map<String,Object> stringWrapper = workFlowFeignClient.get_verify_by_instance(taskId,pId);
|
||||||
return stringWrapper;
|
return stringWrapper;
|
||||||
|
|||||||
@@ -51,6 +51,12 @@ public class WorkFlowController {
|
|||||||
// @Autowired
|
// @Autowired
|
||||||
// private ExportExcelMapper exportExcelMapper;
|
// private ExportExcelMapper exportExcelMapper;
|
||||||
|
|
||||||
|
@ApiOperation(value = "干活流程接收待办")
|
||||||
|
@GetMapping("/execTask")
|
||||||
|
public Map<String,Object> execTask(@RequestParam("todoId") String todoId){
|
||||||
|
return workFlowFeignClient.execTask(todoId);
|
||||||
|
}
|
||||||
|
|
||||||
@ApiOperation(value = "流程实例明细验证是否完成")
|
@ApiOperation(value = "流程实例明细验证是否完成")
|
||||||
@GetMapping("/get_verify_by_instance")
|
@GetMapping("/get_verify_by_instance")
|
||||||
public Map<String,Object> activiti_define_start1(@RequestParam("taskId") String taskId, @RequestParam("pId") String pId){
|
public Map<String,Object> activiti_define_start1(@RequestParam("taskId") String taskId, @RequestParam("pId") String pId){
|
||||||
|
|||||||
Reference in New Issue
Block a user