WeappPackageService.php 1.0 KB

123456789101112131415161718192021222324252627282930313233
  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\service\admin\weapp;
  12. use core\base\BaseAdminService;
  13. /**
  14. * 小程序包版本发布
  15. */
  16. class WeappPackageService extends BaseAdminService
  17. {
  18. public function __construct()
  19. {
  20. parent::__construct();
  21. $this->model = new Applet();
  22. }
  23. public function add(array $data)
  24. {
  25. $data['version_num'] = version_to_int($data['version']);//版本号数字
  26. $data['u'] = $this->uid;//发布者
  27. $data['status'] = '';
  28. }
  29. }