Channel.php 912 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | Niucloud-admin 企业快速开发的saas管理平台
  4. // +----------------------------------------------------------------------
  5. // | 官方网址:https://www.niucloud.com
  6. // +----------------------------------------------------------------------
  7. // | niucloud团队 版权所有 开源版本可自由商用
  8. // +----------------------------------------------------------------------
  9. // | Author: Niucloud Team
  10. // +----------------------------------------------------------------------
  11. namespace app\adminapi\controller\sys;
  12. use app\dict\common\ChannelDict;
  13. use core\base\BaseAdminController;
  14. use think\Response;
  15. class Channel extends BaseAdminController
  16. {
  17. /**
  18. * 获取渠道列表
  19. * @return Response
  20. */
  21. public function getChannelType()
  22. {
  23. return success(ChannelDict::getType());
  24. }
  25. }