bug修复

This commit is contained in:
2025-03-18 11:52:24 +08:00
parent c0fe9c8885
commit dffce9e679
15 changed files with 125 additions and 55 deletions

View File

@@ -55,7 +55,8 @@ public class EmployeeFilesController extends BaseController {
@GetMapping("/{userId}")
public R<UserFilesVo> getInfo(@NotNull(message = "主键不能为空")
@PathVariable("userId") Long userId) {
return R.ok(iEmployeeFilesService.queryUserFilesVoByUserId(userId));
return R.ok(iEmployeeFilesService.
queryUserFilesVoByUserId(userId));
}
/**

View File

@@ -55,14 +55,6 @@ public class OaSalaryController extends BaseController {
return iOaSalaryService.listWorker(bo, pageQuery);
}
/**
* 批量写入user到salary中
*/
@GetMapping("/import")
public R<Void> importSalaryUser() {
return iOaSalaryService.importSalaryUser();
}
/**
* 导出薪资管理列表
*/