EducationCate.php 247 B

123456789101112131415161718192021
  1. <?php
  2. namespace app\model\api;
  3. use think\model;
  4. class EducationCate extends model
  5. {
  6. protected $table = 'table_education_cate';
  7. public function articles()
  8. {
  9. return $this->hasMany('EducationArticle', 'cate_id');
  10. }
  11. }