VersionDownload.php 1003 B

1234567891011121314151617181920212223242526272829303132333435
  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\applet;
  12. use app\service\admin\applet\AppletDownloadService;
  13. use core\base\BaseAdminController;
  14. use think\response\File;
  15. /**
  16. * 小程序版本下载控制器
  17. */
  18. class VersionDownload extends BaseAdminController
  19. {
  20. /**
  21. * 下载
  22. * @param $id
  23. * @return File
  24. */
  25. public function download($id)
  26. {
  27. return (new AppletDownloadService())->download($id);
  28. }
  29. }