// +---------------------------------------------------------------------- namespace App\Services\Common; use App\Models\ConfigGroupModel; use App\Services\BaseService; /** * 配置分组-服务类 * @author laravel开发员 * @since 2020/11/11 * Class ConfigGroupService * @package App\Services\Common */ class ConfigGroupService extends BaseService { /** * 构造函数 * @author laravel开发员 * @since 2020/11/11 * ConfigGroupService constructor. */ public function __construct() { $this->model = new ConfigGroupModel(); } public function getList() { return parent::getList([],[['sort','desc']]); // TODO: Change the autogenerated stub } }