在线编辑 跨域 走主服务 测试

This commit is contained in:
gaojiabao
2023-04-28 11:43:29 +08:00
parent e96e57848f
commit 2e19db8cc8
3 changed files with 7 additions and 7 deletions
@@ -500,6 +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);
@RequestMapping(value = "/bat-wkflow/busProcessModel/recieveFile",method = RequestMethod.POST)
void recieveFile(@RequestParam("fileNm") String fileNm,@RequestParam("standNo") String standNo,@RequestParam("pid") String pid,@RequestParam("taskId") String taskId);
}
@@ -466,7 +466,7 @@ public class workFlowFeignClientImpl {
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);
public void recieveFile(@RequestParam("fileNm") String fileNm,@RequestParam("standNo") String standNo,@RequestParam("pid") String pid,@RequestParam("taskId") String taskId) {
workFlowFeignClient.recieveFile(fileNm,standNo,pid,taskId);
}
}
@@ -1321,9 +1321,9 @@ public class WorkFlowController extends BaseController {
}
@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);
@PostMapping("/recieveFile")
public void recieveFile(HttpServletRequest request, HttpServletResponse response,@RequestParam("fileNm") String fileNm,@RequestParam("standNo") String standNo,@RequestParam("pid") String pid,@RequestParam("taskId") String taskId){
workFlowFeignClient.recieveFile(fileNm,standNo,pid,taskId);
}
}