93 lines
2.9 KiB
PHP
93 lines
2.9 KiB
PHP
<?php
|
|
|
|
namespace App\Models\Game\Player;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* @property int $apply
|
|
* @property string $prob
|
|
* @property string $lv1
|
|
* @property string $lv2
|
|
* @property string $lv3
|
|
* @property string $lv4
|
|
* @property string $lv5
|
|
* @property string $weapon
|
|
* @property string $body
|
|
* @property string $wrist
|
|
* @property string $foots
|
|
* @property string $neck
|
|
* @property string $head
|
|
* @property string $shield
|
|
* @property string $ear
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttr newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttr newQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttr query()
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttr whereApply($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttr whereBody($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttr whereEar($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttr whereFoots($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttr whereHead($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttr whereLv1($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttr whereLv2($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttr whereLv3($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttr whereLv4($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttr whereLv5($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttr whereNeck($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttr whereProb($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttr whereShield($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttr whereWeapon($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttr whereWrist($value)
|
|
* @mixin \Eloquent
|
|
*/
|
|
class ItemAttr extends Model
|
|
{
|
|
/**
|
|
* Indicates if the model should be timestamped.
|
|
*
|
|
* @var bool
|
|
*/
|
|
public $timestamps = false;
|
|
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'item_attr';
|
|
|
|
/**
|
|
* The primary key for the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $primaryKey = 'apply';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array<int, string>
|
|
*/
|
|
protected $fillable = [
|
|
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be hidden for serialization.
|
|
*
|
|
* @var array<int, string>
|
|
*/
|
|
protected $hidden = [
|
|
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be cast.
|
|
*
|
|
* @var array<string, string>
|
|
*/
|
|
protected $casts = [
|
|
|
|
];
|
|
}
|