__init__.py 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. """ORM entity models — one file per table."""
  2. from supply_infra.db.models.agent_document_injection import AgentDocumentInjection
  3. from supply_infra.db.models.auth_session import AuthSession
  4. from supply_infra.db.models.auth_user import AuthUser
  5. from supply_infra.db.models.category_tree_weight import CategoryTreeWeight
  6. from supply_infra.db.models.demand_belong_category import DemandBelongCategory
  7. from supply_infra.db.models.demand_belong_pool_rel import DemandBelongPoolRel
  8. from supply_infra.db.models.demand_grade import DemandGrade
  9. from supply_infra.db.models.demand_grade_category_rel import DemandGradeCategoryRel
  10. from supply_infra.db.models.demand_grade_plan import (
  11. DemandGradePlan,
  12. DemandGradePlanGroup,
  13. DemandGradePlanGroupItem,
  14. )
  15. from supply_infra.db.models.demand_popularity_stats import DemandPopularityStats
  16. from supply_infra.db.models.demand_video_expansion import (
  17. DemandVideoExpansion,
  18. DemandVideoExpansionRun,
  19. )
  20. from supply_infra.db.models.generated_demand import GeneratedDemand
  21. from supply_infra.db.models.global_tree_category import GlobalTreeCategory
  22. from supply_infra.db.models.global_tree_element import GlobalTreeElement
  23. from supply_infra.db.models.multi_demand_pool_di import MultiDemandPoolDi
  24. from supply_infra.db.models.multi_demand_video_detail import MultiDemandVideoDetail
  25. from supply_infra.db.models.multi_demand_video_point import MultiDemandVideoPoint
  26. from supply_infra.db.models.oss_log import OssLog
  27. from supply_infra.db.models.pipeline_lock import PipelineLock
  28. from supply_infra.db.models.pipeline_outbox import PipelineOutbox
  29. from supply_infra.db.models.pipeline_run import PipelineRun
  30. from supply_infra.db.models.pipeline_step_run import PipelineStepRun
  31. from supply_infra.db.models.video_discovery import (
  32. VideoDiscoveryCandidate,
  33. VideoDiscoveryRun,
  34. VideoDiscoverySearch,
  35. )
  36. __all__ = [
  37. "AgentDocumentInjection",
  38. "AuthSession",
  39. "AuthUser",
  40. "CategoryTreeWeight",
  41. "DemandBelongCategory",
  42. "DemandBelongPoolRel",
  43. "DemandGrade",
  44. "DemandGradeCategoryRel",
  45. "DemandGradePlan",
  46. "DemandGradePlanGroup",
  47. "DemandGradePlanGroupItem",
  48. "DemandPopularityStats",
  49. "DemandVideoExpansion",
  50. "DemandVideoExpansionRun",
  51. "GeneratedDemand",
  52. "GlobalTreeCategory",
  53. "GlobalTreeElement",
  54. "MultiDemandPoolDi",
  55. "MultiDemandVideoDetail",
  56. "MultiDemandVideoPoint",
  57. "OssLog",
  58. "PipelineLock",
  59. "PipelineOutbox",
  60. "PipelineRun",
  61. "PipelineStepRun",
  62. "VideoDiscoveryCandidate",
  63. "VideoDiscoveryRun",
  64. "VideoDiscoverySearch",
  65. ]