servermgrv2/app/Entities/HPILOEntity.php
2023-07-17 21:09:49 +09:00

42 lines
935 B
PHP

<?php
namespace App\Entities;
use App\Entities\CommonEntity;
class HPILOEntity extends CommonEntity
{
protected $datamap = [];
protected $dates = ['created_at', 'updated_at', 'deleted_at'];
protected $casts = [];
public function getPrimaryKey()
{
return $this->attributes['uid'];
}
public function getID()
{
return $this->attributes['id'];
}
public function getPassword()
{
return $this->attributes['passwd'];
}
public function getIP()
{
return $this->attributes['ip'];
}
public function getPort()
{
return $this->attributes['port'];
}
public function getTitle()
{
return "{$this->attributes['customer']} {$this->attributes['model']}";
}
public function __toString()
{
return "uid:{$this->attributes['uid']}|{$this->attributes['customer']}|{$this->attributes['model']}";
}
}