22 lines
459 B
PHP
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'];
|
|
}
|
|
}
|