'datetime', 'updated_at' => 'datetime', 'completed_at' => 'datetime', 'total_score' => 'float', 'question_count' => 'integer', ]; /** * 获取试卷的题目列表 */ public function questions() { return $this->hasMany(PaperQuestion::class, 'paper_id', 'paper_id'); } /** * 获取关联的学生 */ public function student() { return $this->belongsTo(Student::class, 'student_id', 'student_id'); } /** * 获取关联的教师 */ public function teacher() { return $this->belongsTo(Teacher::class, 'teacher_id', 'teacher_id'); } }