54 lines
1.5 KiB
PHP
54 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;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
/**
|
|
* Class PlayerGamePlatform
|
|
* @property int id 主键
|
|
* @property int platform_id 平台id
|
|
* @property int player_id 游戏编号
|
|
* @property string player_name 平台游戏类型
|
|
* @property string player_code 游戏类型
|
|
* @property string player_password 玩家密码
|
|
* @property int status 状态
|
|
* @property string created_at 创建时间
|
|
* @property string updated_at 最后一次修改时间
|
|
* @property string deleted_at 删除时间
|
|
*
|
|
* @property Player player 玩家信息
|
|
* @package addons\webman\model
|
|
*/
|
|
class PlayerGamePlatform extends Model
|
|
{
|
|
use SoftDeletes, HasDateTimeFormatter;
|
|
|
|
public function __construct(array $attributes = [])
|
|
{
|
|
parent::__construct($attributes);
|
|
$this->setTable(plugin()->webman->config('database.player_game_platform_table'));
|
|
}
|
|
|
|
/**
|
|
* 游戏平台
|
|
* @return BelongsTo
|
|
*/
|
|
public function gamePlatform(): BelongsTo
|
|
{
|
|
return $this->belongsTo(plugin()->webman->config('database.game_platform_model'), 'platform_id');
|
|
}
|
|
|
|
/**
|
|
* 玩家信息
|
|
* @return BelongsTo
|
|
*/
|
|
public function player(): BelongsTo
|
|
{
|
|
return $this->belongsTo(plugin()->webman->config('database.player_model'), 'player_id');
|
|
}
|
|
}
|