在线编辑 跨域 走主服务 测试
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
+2
-2
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
+3
-3
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user