| 1234567891011121314151617181920 |
- <?php
- namespace app\http\facade;
- use think\Facade;
- class Config extends Facade
- {
- /**
- *
- * @author 许祖兴 < zuxing.xu@lettered.cn>
- * @date 2020/3/16 10:47
- *
- * @return string
- */
- protected static function getFacadeClass()
- {
- return 'app\\common\\model\\SystemConfig';
- }
- }
|