123456789101112131415161718192021 |
- <?php
- declare(strict_types=1);
- namespace app\common\facade;
- use think\Facade;
- /**
- * @see \app\common\utils\ModelUtils
- * @package app\common\facade
- * @mixin \app\common\utils\ModelUtils
- * @method static void makeModel()
- * @method static string codeModel()
- */
- class ModelUtils extends Facade
- {
- protected static function getFacadeClass()
- {
- return 'app\common\utils\ModelUtils';
- }
- }
|