mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-11 18:32:50 +00:00
24 lines
449 B
PHP
24 lines
449 B
PHP
<?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);
|
|
}
|
|
} |