UntieOfficialAccount.php 575 B

123456789101112131415
  1. <?php
  2. namespace App\Modules\OfficialAccount\Models;
  3. use DB;
  4. use Illuminate\Database\Eloquent\Model;
  5. class UntieOfficialAccount extends Model
  6. {
  7. protected $tables = 'untie_official_accounts';
  8. 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'];
  9. }