Module.php 415 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Master\Framework\Extend;
  3. use App\Model\Framework\AdminSetupModel;
  4. class Module
  5. {
  6. /**
  7. * 单页模型
  8. * @param string $tables
  9. * @return array|mixed
  10. */
  11. public static function _SetupModule(string $tables): mixed
  12. {
  13. $setup = new AdminSetupModel();
  14. $info = $setup->getDetail(params: ['table' => $tables]);
  15. return $info['value'] ?? [];
  16. }
  17. }