| | |
| | | |
| | | @ApiOperation(value = "人员明细分页查询") |
| | | @GetMapping("basicInformationOfPersonnelSelectPage") |
| | | public Result<IPage<Map<String, Object>>> basicInformationOfPersonnelSelectPage(Page<List<PersonBasicInfoDetailsDto>> page, String name, Integer departmentId) { |
| | | public Result<IPage<Map<String, Object>>> basicInformationOfPersonnelSelectPage(Page page, String name, Integer departmentId) { |
| | | return Result.success(personBasicInfoService.basicInformationOfPersonnelSelectPage(page, name, departmentId)); |
| | | } |
| | | |
| | |
| | | @ApiOperation(value = "上传文件接口") |
| | | @PostMapping("/saveCNASFile") |
| | | public Result saveFile(@RequestPart("file") MultipartFile file) { |
| | | String s = FileSaveUtil.StoreFile(file); |
| | | return Result.success("上传成功", s); |
| | | String s = FileSaveUtil.uploadWordFile(file); |
| | | return Result.success(s); |
| | | } |
| | | |
| | | /** |