__init__.py 2.4 KB

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