fly 4 vuotta sitten
vanhempi
commit
3679917130

+ 35 - 0
src/Models/OfficialAccount/OfficialAccount.php

@@ -0,0 +1,35 @@
+<?php
+
+namespace General\Models\OfficialAccount;
+
+use Illuminate\Database\Eloquent\Model;
+
+class OfficialAccount extends Model
+{
+    protected $tables = 'official_accounts';
+
+    protected $fillable = [
+        'distribution_channel_id',
+        'nickname',
+        'name',
+        'head_img',
+        'appid',
+        'appsecret',
+        'verify_txt',
+        'alias',
+        'qrcode_url',
+        'principal_name',
+        'service_type_info',
+        'func_info',
+        'authorizer_refresh_token',
+        'is_auth',
+        'cancel_auth_time',
+        'official_account_type',
+        'verify_type_info',
+        'subscribe_top_num',
+        'subscribe_day_maximum',
+        'sort_no',
+        'is_enabled',
+        'auth_media_push_account'
+    ];
+}

+ 1 - 1
src/Services/LandingPage/LandingPageLinkService.php

@@ -9,7 +9,7 @@ use Exception;
 use General\Models\LandingPage\LandingPageDomain;
 use General\Models\LandingPage\LandingPageLink;
 use General\Models\LandingPage\LandingPageLinkLog;
-use App\Modules\OfficialAccount\Models\OfficialAccount;
+use General\Models\OfficialAccount\OfficialAccount;
 use General\Models\Report\BaiDuAdAccount;
 use General\Models\Report\ReportUserBindRecord;
 use General\Models\Report\ReportUserChargeRecord;