librenms/app/Models/MplsSdp.php
2021-09-10 20:09:53 +02:00

49 lines
1.1 KiB
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\HasMany;
use LibreNMS\Interfaces\Models\Keyable;
class MplsSdp extends Model implements Keyable
{
protected $primaryKey = 'sdp_id';
public $timestamps = false;
protected $fillable = [
'sdp_oid',
'device_id',
'sdpRowStatus',
'sdpDelivery',
'sdpDescription',
'sdpAdminStatus',
'sdpOperStatus',
'sdpAdminPathMtu',
'sdpOperPathMtu',
'sdpLastMgmtChange',
'sdpLastStatusChange',
'sdpActiveLspType',
'sdpFarEndInetAddressType',
'sdpFarEndInetAddress',
];
// ---- Helper Functions ----
/**
* Get a string that can identify a unique instance of this model
*
* @return int
*/
public function getCompositeKey()
{
return $this->sdp_oid;
}
// ---- Define Relationships ----
public function binds(): HasMany
{
return $this->hasMany(\App\Models\MplsSdpBind::class, 'sdp_id');
}
}