WechatOpenPlatformService.php 419 B

1234567891011121314151617
  1. <?php
  2. namespace Modules\Channel\Services\WechatOpenPlatform;
  3. use Illuminate\Support\Facades\DB;
  4. class WechatOpenPlatformService
  5. {
  6. public static function getComponentInfo($companyUid) {
  7. return DB::table('wechat_open_platform_infos')
  8. ->where([
  9. 'company_uid' => $companyUid,
  10. 'is_enabled' => 1,
  11. ])->orderBy('id', 'desc')
  12. ->first();
  13. }
  14. }