| 123456789101112131415161718192021222324 |
- <?php
- /**
- *
- * @author: xaboy<365615158@qq.com>
- * @day: 2018/01/15
- */
- namespace service;
- use app\admin\model\system\SystemGroupData;
- class GroupDataService
- {
- public static function getGroupData($config_name,$limit = 0)
- {
- return SystemGroupData::getGroupData($config_name,$limit);
- }
- public static function getData($config_name,$limit = 0)
- {
- return SystemGroupData::getAllValue($config_name,$limit);
- }
- }
|