| | |
| | | * @return |
| | | */ |
| | | @ApiOperation(value = "导入标准查新") |
| | | @GetMapping("/importMethodSearchNew") |
| | | @PostMapping("/importMethodSearchNew") |
| | | public Result importMethodSearchNew(MultipartFile file){ |
| | | return Result.success(processMethodSearchNewService.importMethodSearchNew(file)); |
| | | } |
| | |
| | | */ |
| | | @ApiOperation(value = "查询存档") |
| | | @GetMapping("/pageSearchNewArchived") |
| | | public Result<IPage<ProcessMethodSearchNewArchivedDto>> pageSearchNewArchived(ProcessMethodSearchNewArchivedDto archived,Page page) throws Exception { |
| | | public Result pageSearchNewArchived(ProcessMethodSearchNewArchivedDto archived,Page page) throws Exception { |
| | | return Result.success(processMethodSearchNewService.pageSearchNewArchived(page, archived)); |
| | | } |
| | | |