Exemplo n.º 1
0
 public function teacher()
 {
     $teacher = \Hnust\input('teacher');
     if (empty($teacher)) {
         $this->msg = '参数有误';
         $this->code = Config::RETURN_ERROR;
     } else {
         $schedule = new \Hnust\Analyse\Schedule('1301010101');
         $this->data = $schedule->getTeacherSchedule(trim($teacher));
     }
 }