20 lines
536 B
PHP
20 lines
536 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'];
|
|
}
|
|
protected function setPassword(string $password){
|
|
$this->attributes['passwd'] = password_hash($password,PASSWORD_DEFAULT);
|
|
}
|
|
} |