__init__.py 2.8 KB

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