dbmsv3/app/Entities/Part/IPEntity.php
2025-10-01 14:03:52 +09:00

22 lines
459 B
PHP

<?php
namespace App\Entities\Part;
use App\Models\Part\IPModel;
class IPEntity extends PartEntity
{
const PK = IPModel::PK;
const TITLE = IPModel::TITLE;
const DEFAULT_STATUS = STATUS['AVAILABLE'];
final public function getOldClientInfoUID(): string|null
{
return $this->attributes['old_clientinfo_uid'];
}
//기본기능
public function getIP(): string
{
return $this->attributes['ip'];
}
}