forked from modstart/ModStartBlog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMemberUser.php
More file actions
22 lines (18 loc) · 768 Bytes
/
Copy pathMemberUser.php
File metadata and controls
22 lines (18 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
namespace Module\Member\Model;
use Illuminate\Database\Eloquent\Model;
class MemberUser extends Model
{
protected $table = 'member_user';
protected $fillable = [
'username', 'phone', 'email', 'password', 'status',
'realname', 'area', 'expert_status', 'passwordSalt',
'lastLoginTime', 'lastLoginIp', 'phoneVerified', 'emailVerified',
'avatar', 'avatarMedium', 'avatarBig', 'gender', 'signature',
'vipId', 'vipExpire', 'nickname', 'groupId', 'deleteAtTime',
'isDeleted', 'messageCount', 'registerIp', 'registerIpName',
'company_type', 'company_name', 'company_size', 'revenue',
'company_description', 'contact_position', 'telephone',
'zip_code', 'address', 'website'
];
}