QappPackageService.php 388 B

12345678910111213141516171819202122
  1. <?php
  2. namespace App\Modules\User\Services;
  3. use App\Modules\User\Models\QappPackage;
  4. /**
  5. * 快应用包信息
  6. */
  7. class QappPackageService
  8. {
  9. static function getPackage($channel_id)
  10. {
  11. return QappPackage::getPackage($channel_id);
  12. }
  13. static function getChannelId($package)
  14. {
  15. return QappPackage::where('package',$package)->value('channel_id');
  16. }
  17. }