<?php namespace app\model\api; use think\model; class EducationCate extends model { protected $table = 'table_education_cate'; public function articles() { return $this->hasMany('EducationArticle', 'cate_id'); } }