2021年1月20日
摘要: class Parent(Base): __tablename__ = 'parent' id = Column(Integer, primary_key=True) children = relationship("Child", back_populates="parent") class Ch 阅读全文
posted @ 2021-01-20 16:07 caigan 阅读(298) 评论(0) 推荐(0) 编辑