工作流 复审 标准类别搜索

This commit is contained in:
gaojiabao
2023-04-28 14:33:11 +08:00
parent 06f7ae6e90
commit ebe79f127b
3 changed files with 5 additions and 5 deletions
@@ -501,5 +501,5 @@ public interface workFlowFeignClient {
@RequestMapping(value = "/bat-wkflow/datas/bus-process-new/getSarBussionStandPageNo",method = RequestMethod.POST)
List<SarBussionessStandState> getSarBussionStandPageNo(@RequestBody List<SarBussionessStandState> rows);
@RequestMapping(value = "/bat-wkflow/busProcessModel/recieveFile",method = RequestMethod.POST)
void recieveFile(HttpServletRequest request, HttpServletResponse response ,@RequestParam("fileNm") String fileNm,@RequestParam("standNo") String standNo,@RequestParam("fileId") String fileId);
void recieveFile(@RequestParam("fileNm") String fileNm,@RequestParam("standNo") String standNo,@RequestParam("fileId") String fileId);
}
@@ -466,7 +466,7 @@ public class workFlowFeignClientImpl {
return workFlowFeignClient.getSarBussionStandPageNo(rows);
}
public void recieveFile(HttpServletRequest request, HttpServletResponse response ,@RequestParam("fileNm") String fileNm,@RequestParam("standNo") String standNo,@RequestParam("fileId") String fileId) {
workFlowFeignClient.recieveFile(request,response,fileNm,standNo,fileId);
public void recieveFile(@RequestParam("fileNm") String fileNm,@RequestParam("standNo") String standNo,@RequestParam("fileId") String fileId) {
workFlowFeignClient.recieveFile(fileNm,standNo,fileId);
}
}
@@ -1322,8 +1322,8 @@ public class WorkFlowController extends BaseController {
@ApiOperation(value = "|onlyOffice接收文件")
@PostMapping("/recieveFile")
public void recieveFile(HttpServletRequest request, HttpServletResponse response,@RequestParam("fileNm") String fileNm,@RequestParam("standNo") String standNo,@RequestParam("fileId") String fileId){
workFlowFeignClient.recieveFile(request,response,fileNm,standNo,fileId);
public void recieveFile(@RequestParam("fileNm") String fileNm,@RequestParam("standNo") String standNo,@RequestParam("fileId") String fileId){
workFlowFeignClient.recieveFile(fileNm,standNo,fileId);
}
}