跨越 经过主服务 在线编辑
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user