This commit is contained in:
cjw 2024-08-20 11:23:38 +08:00
parent dc0ddfc898
commit 591de167c0
1 changed files with 2 additions and 2 deletions

View File

@ -71,8 +71,8 @@ public class ReservationServiceImpl implements IReservationService {
}
@Override
public List<ReservationDateVo> selectDateList(String time, Long userId) {
public List<ReservationDateVo> selectDateList(String time, Long counselorId) {
return dayMapper.selectDateList(time,userId);
return dayMapper.selectDateList(time, counselorId);
}
}