__init__.py 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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.channel_content_data import ChannelContentData
  7. from supply_infra.db.models.demand_belong_category import DemandBelongCategory
  8. from supply_infra.db.models.demand_belong_pool_rel import DemandBelongPoolRel
  9. from supply_infra.db.models.demand_feedback import DemandFeedback
  10. from supply_infra.db.models.demand_grade import DemandGrade
  11. from supply_infra.db.models.demand_grade_category_rel import DemandGradeCategoryRel
  12. from supply_infra.db.models.demand_grade_plan import (
  13. DemandGradePlan,
  14. DemandGradePlanGroup,
  15. DemandGradePlanGroupItem,
  16. )
  17. from supply_infra.db.models.demand_popularity_stats import DemandPopularityStats
  18. from supply_infra.db.models.demand_video_expansion import (
  19. DemandVideoExpansion,
  20. DemandVideoExpansionRun,
  21. )
  22. from supply_infra.db.models.generated_demand import GeneratedDemand
  23. from supply_infra.db.models.global_tree_category import GlobalTreeCategory
  24. from supply_infra.db.models.global_tree_element import GlobalTreeElement
  25. from supply_infra.db.models.global_category_content_weight import (
  26. GlobalCategoryContentWeight,
  27. )
  28. from supply_infra.db.models.global_category_channel_content_rank import (
  29. GlobalCategoryChannelContentRank,
  30. )
  31. from supply_infra.db.models.global_v2 import (
  32. GlobalCategoryV2,
  33. GlobalElementV2,
  34. GlobalSourceElementData,
  35. )
  36. from supply_infra.db.models.multi_demand_pool_di import MultiDemandPoolDi
  37. from supply_infra.db.models.multi_demand_video_detail import MultiDemandVideoDetail
  38. from supply_infra.db.models.multi_demand_video_point import MultiDemandVideoPoint
  39. from supply_infra.db.models.llm_usage_event import LlmUsageEvent
  40. from supply_infra.db.models.oss_log import OssLog
  41. from supply_infra.db.models.pipeline_lock import PipelineLock
  42. from supply_infra.db.models.pipeline_outbox import PipelineOutbox
  43. from supply_infra.db.models.pipeline_run import PipelineRun
  44. from supply_infra.db.models.pipeline_step_run import PipelineStepRun
  45. from supply_infra.db.models.video_discovery import (
  46. VideoDiscoveryCandidate,
  47. VideoDiscoveryEvidence,
  48. VideoDiscoveryGateEvaluation,
  49. VideoDiscoveryRun,
  50. VideoDiscoverySearch,
  51. )
  52. __all__ = [
  53. "AgentDocumentInjection",
  54. "AuthSession",
  55. "AuthUser",
  56. "CategoryTreeWeight",
  57. "ChannelContentData",
  58. "DemandBelongCategory",
  59. "DemandBelongPoolRel",
  60. "DemandFeedback",
  61. "DemandGrade",
  62. "DemandGradeCategoryRel",
  63. "DemandGradePlan",
  64. "DemandGradePlanGroup",
  65. "DemandGradePlanGroupItem",
  66. "DemandPopularityStats",
  67. "DemandVideoExpansion",
  68. "DemandVideoExpansionRun",
  69. "GeneratedDemand",
  70. "GlobalTreeCategory",
  71. "GlobalTreeElement",
  72. "GlobalCategoryContentWeight",
  73. "GlobalCategoryChannelContentRank",
  74. "GlobalCategoryV2",
  75. "GlobalElementV2",
  76. "GlobalSourceElementData",
  77. "MultiDemandPoolDi",
  78. "MultiDemandVideoDetail",
  79. "MultiDemandVideoPoint",
  80. "LlmUsageEvent",
  81. "OssLog",
  82. "PipelineLock",
  83. "PipelineOutbox",
  84. "PipelineRun",
  85. "PipelineStepRun",
  86. "VideoDiscoveryCandidate",
  87. "VideoDiscoveryEvidence",
  88. "VideoDiscoveryGateEvaluation",
  89. "VideoDiscoveryRun",
  90. "VideoDiscoverySearch",
  91. ]