You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
337 B
18 lines
337 B
<?php
|
|
namespace app\admin\model;
|
|
|
|
use think\Model;
|
|
|
|
class Users extends Model
|
|
{
|
|
protected $name = 'users';
|
|
protected $type = [
|
|
// 设置addtime为时间戳类型(整型)
|
|
'reg_time' => 'timestamp:Y-m-d H:i:s',
|
|
];
|
|
// birthday修改器
|
|
protected function setpwdAttr($value){
|
|
return md5($value);
|
|
}
|
|
|
|
}
|