22 lines
676 B
Python
22 lines
676 B
Python
# from app.services.db_service import db
|
|
# from werkzeug.security import generate_password_hash, check_password_hash
|
|
|
|
# class User(db.Model):
|
|
# id = db.Column(db.Integer, primary_key=True)
|
|
# name = db.Column(db.String(120))
|
|
# email = db.Column(db.String(120), unique=True)
|
|
# password_hash = db.Column(db.String(255))
|
|
|
|
# def set_password(self, password):
|
|
# self.password_hash = generate_password_hash(password)
|
|
|
|
# def check_password(self, password):
|
|
# return check_password_hash(self.password_hash, password)
|
|
|
|
|
|
class User:
|
|
def __init__(self, id, name, email):
|
|
self.id = id
|
|
self.name = name
|
|
self.email = email
|