优化代码

This commit is contained in:
none 2023-04-19 11:10:50 +08:00
parent 51db585796
commit ea80ddc61a

View File

@ -52,7 +52,6 @@ import java.util.stream.Collectors;
/**
* @Author 杭州白书科技有限公司
*
* @create 2023/2/23 09:48
*/
@RestController
@ -60,23 +59,32 @@ import java.util.stream.Collectors;
@RequestMapping("/backend/v1/user")
public class UserController {
@Autowired private UserService userService;
@Autowired
private UserService userService;
@Autowired private UserDepartmentService userDepartmentService;
@Autowired
private UserDepartmentService userDepartmentService;
@Autowired private DepartmentService departmentService;
@Autowired
private DepartmentService departmentService;
@Autowired private ApplicationContext context;
@Autowired
private ApplicationContext context;
@Autowired private UserCourseHourRecordService userCourseHourRecordService;
@Autowired
private UserCourseHourRecordService userCourseHourRecordService;
@Autowired private UserCourseRecordService userCourseRecordService;
@Autowired
private UserCourseRecordService userCourseRecordService;
@Autowired private CourseHourService courseHourService;
@Autowired
private CourseHourService courseHourService;
@Autowired private CourseService courseService;
@Autowired
private CourseService courseService;
@Autowired private UserLearnDurationStatsService userLearnDurationStatsService;
@Autowired
private UserLearnDurationStatsService userLearnDurationStatsService;
@BackendPermissionMiddleware(slug = BPermissionConstant.USER_INDEX)
@GetMapping("/index")
@ -433,7 +441,7 @@ public class UserController {
.map(UserCourseRecord::getCourseId)
.toList())
.stream()
.collect(Collectors.groupingBy(Course::getId)));
.collect(Collectors.toMap(Course::getId, e -> e)));
return JsonResponse.data(data);
}