跨越 经过主服务 在线编辑

This commit is contained in:
gaojiabao
2023-04-27 17:12:35 +08:00
parent 6edeff7666
commit 25b9e9fc8e
3 changed files with 12 additions and 0 deletions
@@ -500,4 +500,6 @@ public interface workFlowFeignClient {
ResponseMessage<BusProcessNew> updateBusProcessNew(@RequestParam("id") String id, @RequestParam("mags") String mags);
@RequestMapping(value = "/bat-wkflow/datas/bus-process-new/getSarBussionStandPageNo",method = RequestMethod.POST)
List<SarBussionessStandState> getSarBussionStandPageNo(@RequestBody List<SarBussionessStandState> rows);
@RequestMapping(value = "/bat-wkflow/busProcessModel/recieveFileBefore",method = RequestMethod.POST)
void recieveFileBefore(@RequestParam("fileNm") String fileNm,@RequestParam("standNo") String standNo,@RequestParam("pid") String pid,@RequestParam("taskId") String taskId);
}
@@ -465,4 +465,8 @@ public class workFlowFeignClientImpl {
public List<SarBussionessStandState> getSarBussionStandPageNo(@RequestBody List<SarBussionessStandState> rows) {
return workFlowFeignClient.getSarBussionStandPageNo(rows);
}
public void recieveFileBefore(@RequestParam("fileNm") String fileNm,@RequestParam("standNo") String standNo,@RequestParam("pid") String pid,@RequestParam("taskId") String taskId) {
workFlowFeignClient.recieveFileBefore(fileNm,standNo,pid,taskId);
}
}
@@ -1320,4 +1320,10 @@ public class WorkFlowController extends BaseController {
return Result.success(getPageInfo(page.getPager(), rows));
}
@ApiOperation(value = "|onlyOffice接收文件")
@PostMapping("/recieveFileBefore")
public void recieveFileBefore(HttpServletRequest request, HttpServletResponse response,@RequestParam("fileNm") String fileNm,@RequestParam("standNo") String standNo,@RequestParam("pid") String pid,@RequestParam("taskId") String taskId){
workFlowFeignClient.recieveFileBefore(fileNm,standNo,pid,taskId);
}
}