web/app/Models/Game/Player/ObjectProto.php

91 lines
2.9 KiB
PHP

<?php
namespace App\Models\Game\Player;
use Illuminate\Database\Eloquent\Model;
/**
* @property int $vnum
* @property string $name
* @property int $price
* @property string $materials
* @property int $upgrade_vnum
* @property int $upgrade_limit_time
* @property int $life
* @property int $reg_1
* @property int $reg_2
* @property int $reg_3
* @property int $reg_4
* @property int $npc
* @property int $group_vnum
* @property int $dependent_group
* @method static \Illuminate\Database\Eloquent\Builder<static>|ObjectProto newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder<static>|ObjectProto newQuery()
* @method static \Illuminate\Database\Eloquent\Builder<static>|ObjectProto query()
* @method static \Illuminate\Database\Eloquent\Builder<static>|ObjectProto whereDependentGroup($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ObjectProto whereGroupVnum($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ObjectProto whereLife($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ObjectProto whereMaterials($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ObjectProto whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ObjectProto whereNpc($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ObjectProto wherePrice($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ObjectProto whereReg1($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ObjectProto whereReg2($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ObjectProto whereReg3($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ObjectProto whereReg4($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ObjectProto whereUpgradeLimitTime($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ObjectProto whereUpgradeVnum($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ObjectProto whereVnum($value)
* @mixin \Eloquent
*/
class ObjectProto extends Model
{
/**
* Indicates if the model should be timestamped.
*
* @var bool
*/
public $timestamps = false;
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'object_proto';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'vnum';
/**
* 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 = [
];
}