代码功能更新

This commit is contained in:
root
2025-05-18 07:42:27 +00:00
parent 7fc1d422a1
commit 4a90c41da2
2083 changed files with 695218 additions and 3 deletions
+22
View File
@@ -0,0 +1,22 @@
<?php
namespace app\service;
use think\Facade;
/**
* 系统配置服务门面
* @package app\service
* @method static mixed get($wholeKey, $defaultValue='') 通过完整的key获取配置信息
* @method static mixed set($wholeKey, $value) 通过完整的key设置一个配置信息
* @method static mixed del($group, $key) 删除某个分组下某个key的配置
* @method static mixed groupGet($group, $onlyMysql=false) 通过分组名称,获取整个分组的配置信息
* @method static mixed groupSet($array) 通过hash数组,设置整个分组的配置信息
*/
class ConfServiceFacade extends Facade
{
protected static function getFacadeClass()
{
return Conf::class;
}
}