from marshmallow_sqlalchemy import SQLAlchemyAutoSchema from ..sys_user import User from ..sys_role import Role from ..sys_rel_user_role import sys_user_role class UserAutoSchema(SQLAlchemyAutoSchema): class Meta: model = User include_fk = False include_relationships = True load_instance = False