This repository has been archived on 2020-11-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pingan/app/Models/Area.php
2020-08-06 16:37:53 +08:00

31 lines
512 B
PHP

<?php
namespace App\Models;
class Area extends Model
{
/**
* Notes: 上级地区
* @Author: <C.Jason>
* @Date: 2019/11/19 3:01 下午
* @return mixed
*/
public function parent()
{
return $this->belongsTo(__CLASS__, 'parent_id');
}
/**
* Notes: 下级地区
* @Author: <C.Jason>
* @Date: 2019/11/19 3:01 下午
* @return mixed
*/
public function children()
{
return $this->hasMany(__CLASS__, 'parent_id');
}
}