sqlalchemy.exc.ArgumentError: Mapper mapped class XXX>XXX could not assemble any primary key
解决问题:sqlalchemy.exc.ArgumentError: Mapper mapped class Xxx->xxx could not assemble any primary key columns for mapped table ‘xxx’# 创建及操作时间的基类class BaseTime(): __abstract__ = True created_at = Column( DateTime(timezone=True),