PlatformApiApi.php 942 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. /*
  3. * @Description: 平台接口
  4. * @Version: *
  5. * @Autor: lexuan
  6. * @Date: 2024-11-28 13:29:06
  7. * @LastEditors: lexuan
  8. * @LastEditTime: 2024-11-28 13:29:06
  9. */
  10. namespace App\DataApiNew\Api;
  11. use Illuminate\Http\Request;
  12. use App\DataApiNew\Helper\PlatformApiHelper;
  13. use Illuminate\Support\Facades\Log;
  14. class PlatformApiApi
  15. {
  16. protected $helper;
  17. public function __construct(PlatformApiHelper $helper)
  18. {
  19. $this->helper = $helper;
  20. }
  21. // 获取号卡套餐列表
  22. public function hkPlatPackageList(Request $request)
  23. {
  24. return $this->helper->hkPlatPackageList($request);
  25. }
  26. // 获取号卡套餐列表
  27. public function hkPlatOrderSubmit(Request $request)
  28. {
  29. return $this->helper->hkPlatOrderSubmit($request);
  30. }
  31. // 获取号卡套餐列表
  32. public function hkPlatOrderQuery(Request $request)
  33. {
  34. return $this->helper->hkPlatOrderQuery($request);
  35. }
  36. }