| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 | <?phpnamespace app\admin\model\guild;use think\Model;class Guild extends Model{            // 表名    protected $name = 'guild';        // 自动写入时间戳字段    protected $autoWriteTimestamp = 'int';    // 定义时间戳字段名    protected $createTime = 'createtime';    protected $updateTime = 'updatetime';    protected $deleteTime = false;    // 追加属性    protected $append = [    ];    public function getStatusList()    {        return ['0' => __('Status 0'),'1' => __('Status 1'),'-1' => __('Status -1')];    }    public function party()    {        return $this->belongsTo('app\admin\model\party\Party', 'party_id', 'id', [], 'LEFT')->setEagerlyType(0);    }    public function user()    {        return $this->belongsTo('app\admin\model\User', 'user_id', 'id', [], 'LEFT')->setEagerlyType(0);    }    public function auth()    {        return $this->belongsTo('app\admin\model\user\Auth', 'user_id', 'user_id', [], 'LEFT')->setEagerlyType(0);    }}
 |