59 lines
1.5 KiB
PHP
59 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace addons\webman\model;
|
|
|
|
use addons\webman\traits\HasDateTimeFormatter;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
/**
|
|
* Class PlayerRegisterRecord
|
|
* @property int id 主键
|
|
* @property int player_id 玩家id
|
|
* @property int department_id 部门/渠道id
|
|
* @property string register_domain 登錄域名
|
|
* @property string ip ip
|
|
* @property string country_name 国家
|
|
* @property string city_name 地区
|
|
* @property int type 类型
|
|
* @property string remark 备注
|
|
* @property string device 使用設備
|
|
* @property string created_at 创建时间
|
|
* @property string updated_at 最后一次修改时间
|
|
*
|
|
* @package addons\webman\model
|
|
*/
|
|
class PlayerRegisterRecord extends Model
|
|
{
|
|
use HasDateTimeFormatter;
|
|
|
|
CONST TYPE_ADMIN = 1; // 管理后台
|
|
CONST TYPE_CLIENT = 2; // 客户端
|
|
|
|
protected $fillable = [
|
|
'player_id',
|
|
'register_domain',
|
|
'ip',
|
|
'country_name',
|
|
'city_name',
|
|
'type',
|
|
'device',
|
|
'department_id',
|
|
];
|
|
|
|
public function __construct(array $attributes = [])
|
|
{
|
|
parent::__construct($attributes);
|
|
$this->setTable(plugin()->webman->config('database.player_register_record_table'));
|
|
}
|
|
|
|
/**
|
|
* 玩家信息
|
|
* @return belongsTo
|
|
*/
|
|
public function player(): BelongsTo
|
|
{
|
|
return $this->belongsTo(plugin()->webman->config('database.player_model'),'player_id')->withTrashed();
|
|
}
|
|
}
|