@GetMapping("/normal") public Result normal() { LambdaQueryWrapper<Employee> queryWrapper = new LambdaQueryWrapper<>(); queryWrapper.eq(Employee::getStatus, 1); return Result.succ(employeeService.count(queryWrapper)); }
时间: 2023-06-16 18:07:53 浏览: 61
Swagger2整合Springboot
这是一个使用 Spring Boot 框架的 GET 请求处理方法,请求路径为 "/normal"。该方法使用了 LambdaQueryWrapper 对象来构建查询条件,并使用 employeeService 的 count 方法来统计符合条件的记录数。最后将结果封装到 Result 对象中并返回。根据代码中的命名,可以猜测该方法是用来查询员工状态为正常(status=1)的员工数量。
阅读全文