复审流程发送待办通知定时任务测试接口

This commit is contained in:
gaojiabao
2023-06-12 14:04:45 +08:00
parent 9ba9956769
commit dd3692dd92
3 changed files with 12 additions and 0 deletions
@@ -506,4 +506,7 @@ public interface workFlowFeignClient {
void recieveFile(@RequestParam("fileNm") String fileNm,@RequestParam("standNo") String standNo,@RequestParam("fileId") String fileId);
@RequestMapping(value = "/bat-wkflow/datas/bus-process-new/endPrcName",method = RequestMethod.GET)
String endPrcName(@RequestParam("prcName")String prcName,@RequestParam("esId") String esId);
@RequestMapping(value = "/bat-wkflow/datas/bus-process-new/fushen",method = RequestMethod.GET)
String fushen();
}
@@ -475,4 +475,8 @@ public class workFlowFeignClientImpl {
List<BusProcessName> mapWrapper = workFlowFeignClient.todoTaskListByUserIdInfo(taskCommonQuery);
return mapWrapper;
}
public String fushen() {
return workFlowFeignClient.fushen();
}
}
@@ -1511,4 +1511,9 @@ public class WorkFlowController extends BaseController {
return Result.success();
}
@ApiOperation(value = "|复审定时任务测试接口")
@PostMapping("/fushen")
public String fushen(){
return workFlowFeignClient.fushen();
}
}