heheng
2025-12-04 f72e5445beea756fccf5264e6fb4d0f533840bff
multi-admin/src/main/java/com/gkhy/exam/admin/controller/system/EmployeeRecordController.java
@@ -59,9 +59,9 @@
    @ApiOperation(value = "人员档案列表")
    @GetMapping("/getEmployeeRecordList")
    @ApiImplicitParams({
            @ApiImplicitParam(paramType = "query", name = "companyId", dataType = "int", required = true, value = "公司id")
            @ApiImplicitParam(paramType = "query", name = "companyId", dataType = "int", required = false, value = "公司id")
    })
    public CommonResult getEmployeeRecordList(@RequestParam("companyId") Long companyId){
    public CommonResult getEmployeeRecordList( Long companyId){
        return employeeRecordService.getEmployeeRecordList(companyId);
    }
}