27 lines
781 B
PHP
Raw Normal View History

<?php
// +----------------------------------------------------------------------
// | 作者:修缘 联系QQ278896498 QQ群1054861244
// | 声明:未经作者许可,禁止倒卖等商业运营,违者必究
// | 另接php业务网站制作、代理后台、gm后台、支付对接等
// +----------------------------------------------------------------------
// | 创建时间: 2022/1/4 0:49
// +----------------------------------------------------------------------
namespace app\admin\model;
use app\admin\model\AgencyUser;
class Level extends Model
{
public $softDelete = true;
protected $name = 'level';
protected $autoWriteTimestamp = true;
public function adminUser()
{
return $this->hasMany(AgencyUser::class);
}
}