dbmsv2/app/Entities/UserEntity.php
2025-08-19 15:07:14 +09:00

29 lines
598 B
PHP

<?php
namespace App\Entities;
use App\Entities\CommonEntity;
use App\Models\UserModel as Model;
class UserEntity extends CommonEntity
{
const PK = Model::PK;
const TITLE = Model::TITLE;
const STATUS_NORMAL = "normal";
const STATUS_OCCUPIED = "occupied";
const STATUS_TERMINATED = "terminated";
public function getID(): string
{
return $this->attributes['id'];
}
public function getPassword(): string
{
return $this->attributes['passwd'];
}
public function getRole(): string
{
return $this->attributes['role'];
}
}