<?php namespace app\facade; use think\Facade; /** * @method getPowerList(string $apCodes = '') static * @method getPowerListV2(string $pkey, array $power) static */ class Power extends Facade { protected static function getFacadeClass(): string { return 'app\common\util\Power'; } }