CollegeTeaching.php 439 B

12345678910111213141516171819202122
  1. <?php
  2. namespace app\model;
  3. use support\Model;
  4. class CollegeTeaching extends Model
  5. {
  6. protected $table = 'college_teaching';
  7. protected $primaryKey = 'teaching_id';
  8. protected $dateFormat = 'U';
  9. public const CREATED_AT = 'teaching_addTime';
  10. public const UPDATED_AT = 'teaching_updateTime';
  11. public function course(){
  12. return $this->hasOne(CollegeCourses::class,'courses_id','teaching_courses_id');
  13. }
  14. }