ModelUtils.php 407 B

123456789101112131415161718192021
  1. <?php
  2. declare(strict_types=1);
  3. namespace app\common\facade;
  4. use think\Facade;
  5. /**
  6. * @see \app\common\utils\ModelUtils
  7. * @package app\common\facade
  8. * @mixin \app\common\utils\ModelUtils
  9. * @method static void makeModel()
  10. * @method static string codeModel()
  11. */
  12. class ModelUtils extends Facade
  13. {
  14. protected static function getFacadeClass()
  15. {
  16. return 'app\common\utils\ModelUtils';
  17. }
  18. }