__init__.py 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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.business_harness import (
  6. DailyDemandPackage,
  7. DailyDemandTask,
  8. ContentDemandCoverage,
  9. ContentPerformanceFact,
  10. DemandAttributionSnapshot,
  11. DemandEvaluationSnapshot,
  12. DemandScoreContribution,
  13. EvidencePackage,
  14. PlatformDemand,
  15. PlatformDemandCategoryRel,
  16. PlatformDemandVersion,
  17. RawDemandExpression,
  18. StandardDemandAlias,
  19. StandardDemandTerm,
  20. StrategyVersion,
  21. StrategyChangeProposal,
  22. )
  23. from supply_infra.db.models.category_tree_weight import CategoryTreeWeight
  24. from supply_infra.db.models.demand_belong_category import DemandBelongCategory
  25. from supply_infra.db.models.demand_belong_pool_rel import DemandBelongPoolRel
  26. from supply_infra.db.models.demand_feedback import DemandFeedback
  27. from supply_infra.db.models.demand_grade import DemandGrade
  28. from supply_infra.db.models.demand_grade_category_rel import DemandGradeCategoryRel
  29. from supply_infra.db.models.demand_grade_plan import (
  30. DemandGradePlan,
  31. DemandGradePlanGroup,
  32. DemandGradePlanGroupItem,
  33. )
  34. from supply_infra.db.models.demand_popularity_stats import DemandPopularityStats
  35. from supply_infra.db.models.demand_video_expansion import (
  36. DemandVideoExpansion,
  37. DemandVideoExpansionRun,
  38. )
  39. from supply_infra.db.models.generated_demand import GeneratedDemand
  40. from supply_infra.db.models.global_tree_category import GlobalTreeCategory
  41. from supply_infra.db.models.multi_demand_pool_di import MultiDemandPoolDi
  42. from supply_infra.db.models.multi_demand_video_detail import MultiDemandVideoDetail
  43. from supply_infra.db.models.multi_demand_video_point import MultiDemandVideoPoint
  44. from supply_infra.db.models.oss_log import OssLog
  45. from supply_infra.db.models.pipeline_lock import PipelineLock
  46. from supply_infra.db.models.pipeline_outbox import PipelineOutbox
  47. from supply_infra.db.models.pipeline_run import PipelineRun
  48. from supply_infra.db.models.pipeline_step_run import PipelineStepRun
  49. from supply_infra.db.models.video_discovery import (
  50. VideoDiscoveryCandidate,
  51. VideoDiscoveryRun,
  52. VideoDiscoverySearch,
  53. )
  54. __all__ = [
  55. "AgentDocumentInjection",
  56. "AuthSession",
  57. "AuthUser",
  58. "DailyDemandPackage",
  59. "DailyDemandTask",
  60. "ContentDemandCoverage",
  61. "ContentPerformanceFact",
  62. "DemandAttributionSnapshot",
  63. "DemandEvaluationSnapshot",
  64. "DemandScoreContribution",
  65. "EvidencePackage",
  66. "PlatformDemand",
  67. "PlatformDemandCategoryRel",
  68. "PlatformDemandVersion",
  69. "RawDemandExpression",
  70. "StandardDemandAlias",
  71. "StandardDemandTerm",
  72. "StrategyVersion",
  73. "StrategyChangeProposal",
  74. "CategoryTreeWeight",
  75. "DemandBelongCategory",
  76. "DemandBelongPoolRel",
  77. "DemandFeedback",
  78. "DemandGrade",
  79. "DemandGradeCategoryRel",
  80. "DemandGradePlan",
  81. "DemandGradePlanGroup",
  82. "DemandGradePlanGroupItem",
  83. "DemandPopularityStats",
  84. "DemandVideoExpansion",
  85. "DemandVideoExpansionRun",
  86. "GeneratedDemand",
  87. "GlobalTreeCategory",
  88. "MultiDemandPoolDi",
  89. "MultiDemandVideoDetail",
  90. "MultiDemandVideoPoint",
  91. "OssLog",
  92. "PipelineLock",
  93. "PipelineOutbox",
  94. "PipelineRun",
  95. "PipelineStepRun",
  96. "VideoDiscoveryCandidate",
  97. "VideoDiscoveryRun",
  98. "VideoDiscoverySearch",
  99. ]