GroupService.php 587 B

1234567891011121314151617181920212223
  1. <?php
  2. /****************************************************************
  3. * Author: libaojia
  4. * Date: 2017/7/11 下午11:20
  5. * Email: livsyitian@163.com
  6. * QQ: 995265288
  7. * User: 芸众商城 www.yunzshop.com
  8. ****************************************************************/
  9. namespace app\common\services\member\group;
  10. use app\common\models\MemberGroup;
  11. class GroupService
  12. {
  13. public static function getMemberGroupList()
  14. {
  15. $groupList = MemberGroup::records()->orderBy('created_at')->get();
  16. return $groupList ? $groupList->toArray() : [];
  17. }
  18. }