ApiMenus.php 432 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * Created by CRMEB.
  4. * User: 136327134@qq.com
  5. * Date: 2019/4/12 17:00
  6. */
  7. namespace app\core\model;
  8. use traits\ModelTrait;
  9. use basic\ModelBasic;
  10. /*
  11. * Api接口列表
  12. * class ApiMenus
  13. * */
  14. class ApiMenus extends ModelBasic
  15. {
  16. use ModelTrait;
  17. /*
  18. * 接口列表配置
  19. *
  20. * */
  21. protected $hash=[
  22. ];
  23. /*
  24. * 获取
  25. * */
  26. public static function getHash($name)
  27. {
  28. }
  29. }