GroupDataService.php 449 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. *
  4. * @author: xaboy<365615158@qq.com>
  5. * @day: 2018/01/15
  6. */
  7. namespace service;
  8. use app\admin\model\system\SystemGroupData;
  9. class GroupDataService
  10. {
  11. public static function getGroupData($config_name,$limit = 0)
  12. {
  13. return SystemGroupData::getGroupData($config_name,$limit);
  14. }
  15. public static function getData($config_name,$limit = 0)
  16. {
  17. return SystemGroupData::getAllValue($config_name,$limit);
  18. }
  19. }