servermgrv2/app/Entities/UserEntity.php
최준흠git config git config --helpgit config --global user.name 최준흠 46364d42d3 servermgrv2 init...
2023-07-26 05:22:09 +09:00

38 lines
706 B
PHP

<?php
namespace App\Entities;
use App\Entities\BaseEntity;
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'];
}
}