heheng
2025-12-18 75c3a26dde3a88c957af13ffbd4bab168e3cfebf
multi-admin/src/main/java/com/gkhy/exam/admin/controller/system/EmployeeRecordController.java
@@ -3,7 +3,6 @@
import com.gkhy.exam.common.annotation.RepeatSubmit;
import com.gkhy.exam.common.api.CommonResult;
import com.gkhy.exam.system.domain.AnnualVerificationPlan;
import com.gkhy.exam.system.domain.EmployeeRecord;
import com.gkhy.exam.system.domain.req.EmployeeRecordReq;
import com.gkhy.exam.system.service.EmployeeRecordService;
@@ -59,9 +58,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);
    }
}