工作流 复审 标准类别搜索
This commit is contained in:
@@ -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(@RequestParam("fileNm") String fileNm,@RequestParam("standNo") String standNo,@RequestParam("pid") String pid,@RequestParam("taskId") String taskId);
|
||||
void recieveFile(HttpServletRequest request, HttpServletResponse response ,@RequestParam("fileNm") String fileNm,@RequestParam("standNo") String standNo,@RequestParam("fileId") String fileId);
|
||||
}
|
||||
|
||||
+2
-2
@@ -466,7 +466,7 @@ public class workFlowFeignClientImpl {
|
||||
return workFlowFeignClient.getSarBussionStandPageNo(rows);
|
||||
}
|
||||
|
||||
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);
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
+2
-2
@@ -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("pid") String pid,@RequestParam("taskId") String taskId){
|
||||
workFlowFeignClient.recieveFile(fileNm,standNo,pid,taskId);
|
||||
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);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -177,8 +177,8 @@ public class WebMvcConfig implements WebMvcConfigurer {
|
||||
|
||||
//// //测试接口使用
|
||||
// addInterceptor.excludePathPatterns("/api/**");
|
||||
|
||||
|
||||
//在线编辑
|
||||
addInterceptor.excludePathPatterns("/api/lawss/activiti/recieveFile");
|
||||
|
||||
|
||||
// // 添加自定义拦截器,并拦截对应 url
|
||||
|
||||
Reference in New Issue
Block a user