ExamPaperQuestion.php 202 B

12345678910111213
  1. <?php
  2. namespace app\model;
  3. use think\Model;
  4. class ExamPaperQuestion extends Model
  5. {
  6. //
  7. public function questions(){
  8. return $this->belongsTo('ExamQuestion','question_id','id');
  9. }
  10. }