93 lines
3.0 KiB
PHP
93 lines
3.0 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>|ItemAttrRare newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttrRare newQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttrRare query()
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttrRare whereApply($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttrRare whereBody($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttrRare whereEar($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttrRare whereFoots($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttrRare whereHead($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttrRare whereLv1($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttrRare whereLv2($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttrRare whereLv3($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttrRare whereLv4($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttrRare whereLv5($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttrRare whereNeck($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttrRare whereProb($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttrRare whereShield($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttrRare whereWeapon($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|ItemAttrRare whereWrist($value)
|
|
* @mixin \Eloquent
|
|
*/
|
|
class ItemAttrRare 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_rare';
|
|
|
|
/**
|
|
* 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 = [
|
|
|
|
];
|
|
}
|