servermgrv2/app/Entities/UserEntity.php
최준흠git config git config --helpgit config --global user.name 최준흠 5d1ddc3c8b servermgrv2 init...
2023-07-21 08:06:05 +09:00

31 lines
583 B
PHP

<?php
namespace App\Entities;
use App\Entities\CommonEntity;
class UserEntity extends CommonEntity
{
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 getRole()
{
return $this->attributes['role'];
}
public function getPassword()
{
return $this->attributes['passwd'];
}
}