57 lines
1.7 KiB
Python
57 lines
1.7 KiB
Python
from datetime import datetime
|
|
|
|
from werkzeug.security import check_password_hash, generate_password_hash
|
|
|
|
from pear_admin.extensions import db
|
|
|
|
from ._base import BaseORM
|
|
|
|
|
|
class UserORM(BaseORM):
|
|
__tablename__ = "ums_user"
|
|
|
|
id = db.Column(db.Integer, primary_key=True, comment="自增id")
|
|
nickname = db.Column(db.String(128), nullable=False, comment="昵称")
|
|
username = db.Column(db.String(128), nullable=False, comment="登录名")
|
|
password_hash = db.Column(db.String(102), nullable=False, comment="登录密码")
|
|
mobile = db.Column(db.String(32), nullable=False, comment="手机")
|
|
email = db.Column(db.String(64), nullable=False, comment="邮箱")
|
|
avatar = db.Column(db.Text, comment="头像地址")
|
|
create_at = db.Column(
|
|
db.DateTime,
|
|
nullable=False,
|
|
comment="创建时间",
|
|
default=datetime.now,
|
|
)
|
|
department_id = db.Column(
|
|
db.Integer, db.ForeignKey("ums_department.id"), default=1, comment="部门id"
|
|
)
|
|
|
|
role_list = db.relationship(
|
|
"RoleORM",
|
|
secondary="ums_user_role",
|
|
backref=db.backref("user"),
|
|
lazy="dynamic",
|
|
)
|
|
|
|
def json(self):
|
|
return {
|
|
"id": self.id,
|
|
"username": self.username,
|
|
"nickname": self.nickname,
|
|
"mobile": self.mobile,
|
|
"email": self.email,
|
|
"create_at": self.create_at,
|
|
}
|
|
|
|
@property
|
|
def password(self):
|
|
return self.password_hash
|
|
|
|
@password.setter
|
|
def password(self, password):
|
|
self.password_hash = generate_password_hash(password)
|
|
|
|
def check_password(self, password):
|
|
return check_password_hash(self.password_hash, password=password)
|