抖音小程序

CustomerServiceService.php 334B

12345678910111213141516
  1. <?php
  2. namespace App\Service;
  3. use App\Models\ImService;
  4. class CustomerServiceService
  5. {
  6. public static function getCustomerService($appId) {
  7. $list = ImService::getList($appId);
  8. $info = $list->first();
  9. $account = !empty($info->account) ? $info->account : '';
  10. return ['account' => $account];
  11. }
  12. }