servermgrv2/app/Entities/UserEntity.php
2023-07-26 11:03:33 +09:00

36 lines
676 B
PHP

<?php
namespace App\Entities;
class UserEntity extends BaseEntity
{
protected $datamap = [];
protected $dates = ['created_at', 'updated_at', 'deleted_at'];
protected $casts = [];
//기본기능
public function getPrimaryKey()
{
return $this->attributes['uid'];
}
public function getTitle()
{
return $this->attributes['name'];
}
public function getStatus()
{
return $this->attributes['status'];
}
//추가기능
public function getRole()
{
return $this->attributes['role'];
}
public function getPassword()
{
return $this->attributes['passwd'];
}
}