53 lines
1.1 KiB
PHP
53 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class Circle extends Model
|
|
{
|
|
use SoftDeletes;
|
|
public $fillable = [
|
|
'name',
|
|
'title',
|
|
'real_name_type',
|
|
'real_people_type',
|
|
'contact_type',
|
|
'reward_type',
|
|
'audit_type',
|
|
'six_type',
|
|
'birthday_type',
|
|
'belief_type',
|
|
'income_type',
|
|
'industry_type',
|
|
'degree_type',
|
|
'graduate_school_type',
|
|
'h_car_type',
|
|
'h_housing_type',
|
|
'birthday_required_type',
|
|
'property_required_type',
|
|
'degree_required_type',
|
|
'wechat_type',
|
|
'mobile_type',
|
|
'qq_type',
|
|
'other_contact',
|
|
'belief_required_type',
|
|
'affective_state_required_type',
|
|
'nickname_type',
|
|
'affective_state_type',
|
|
'address_type',
|
|
'pic',
|
|
'merchant_id',
|
|
'user_list_type',
|
|
'circle_location',
|
|
];
|
|
public $guarded = [];
|
|
|
|
protected $casts = [
|
|
'created_at' => 'datetime:Y-m-d H:i:s',
|
|
'updated_at' => 'datetime:Y-m-d H:i:s',
|
|
];
|
|
|
|
}
|