Power.php 309 B

123456789101112131415161718
  1. <?php
  2. namespace app\facade;
  3. use think\Facade;
  4. /**
  5. * @method getPowerList(string $apCodes = '') static
  6. * @method getPowerListV2(string $pkey, array $power) static
  7. */
  8. class Power extends Facade
  9. {
  10. protected static function getFacadeClass(): string
  11. {
  12. return 'app\common\util\Power';
  13. }
  14. }