Exam.php 194 B

123456789
  1. <?php
  2. namespace app\inter\model;
  3. use think\Model;
  4. class Exam extends Model {
  5. public function remote_application(){
  6. return $this->hasOne('remote_application','exam_id','id');
  7. }
  8. }