| // +------------------------------------------------+ namespace app\common\model; class Team extends _Init { /** * 模型初始化【事件注册】 */ protected static function init() { self::beforeInsert(function ($data) { $data->status = 1; }); } public function member() { return $this->hasOne('Member', 'id', 'uid'); } }