This commit is contained in:
cjw 2024-08-20 11:24:33 +08:00
parent 591de167c0
commit 6356d38fab
1 changed files with 2 additions and 2 deletions

View File

@ -55,8 +55,8 @@ public class WxCounselorController extends BaseController {
}
@GetMapping("/date")
public R<List<ReservationDateVo>> getReservationList(String time, Long userId) {
return R.ok(reservationService.selectDateList(time, userId));
public R<List<ReservationDateVo>> getReservationList(String time, Long counselorId) {
return R.ok(reservationService.selectDateList(time, counselorId));
}
}