class User: """用户模型""" def __init__(self, id, username, email): self.id = id self.username = username self.email = email def to_dict(self): """转换为字典""" return { 'id': self.id, 'username': self.username, 'email': self.email }