mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-01-23 02:58:14 -05:00
24 lines
452 B
PHP
Executable File
24 lines
452 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class User extends Model
|
|
{
|
|
protected $table = 'v2_user';
|
|
protected $dateFormat = 'U';
|
|
protected $guarded = ['id'];
|
|
protected $casts = [
|
|
'created_at' => 'timestamp',
|
|
'updated_at' => 'timestamp'
|
|
];
|
|
|
|
|
|
// 获取邀请人信息
|
|
public function invite_user()
|
|
{
|
|
return $this->belongsTo(self::class, 'invite_user_id', 'id');
|
|
}
|
|
}
|