/**
  * 排课详细内容
  *
  * @return
  */
 public String scheduleDetails() {
   schedule.setId(id);
   schedule = commonService.getSchedule(schedule);
   lessonRecords = commonService.getLessonRecordsBySchedule(schedule);
   return SUCCESS;
 }