// +---------------------------------------------------------------------- namespace app\services\system; use app\model\system\Config; class ConfigService{ public function getConfigField(){ $map = []; $data = Config::where($map)->select(); return $data; } }