__init__.py 302 B

12345678910111213141516171819
  1. """
  2. SQL数据库模型模块
  3. 提供SQL数据库相关的模型定义
  4. """
  5. # SQL模型相关导入
  6. from .mysql_models import *
  7. from .postgres_models import *
  8. __all__ = [
  9. # MySQL模型
  10. "UserModel",
  11. "TestTableModel",
  12. "BasisOfPreparationModel",
  13. # PostgreSQL模型
  14. "PGUserModel"
  15. ]