UserObject.php 200 B

12345678910111213
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. class UserObject extends Model
  5. {
  6. public function education(){
  7. return $this->belongsTo('Category','education','id','','LEFT');
  8. }
  9. }