__init__.py 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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.oss_log import OssLog
  28. from supply_infra.db.models.pipeline_lock import PipelineLock
  29. from supply_infra.db.models.pipeline_outbox import PipelineOutbox
  30. from supply_infra.db.models.pipeline_run import PipelineRun
  31. from supply_infra.db.models.pipeline_step_run import PipelineStepRun
  32. from supply_infra.db.models.video_discovery import (
  33. VideoDiscoveryCandidate,
  34. VideoDiscoveryRun,
  35. VideoDiscoverySearch,
  36. )
  37. __all__ = [
  38. "AgentDocumentInjection",
  39. "AuthSession",
  40. "AuthUser",
  41. "CategoryTreeWeight",
  42. "DemandBelongCategory",
  43. "DemandBelongPoolRel",
  44. "DemandFeedback",
  45. "DemandGrade",
  46. "DemandGradeCategoryRel",
  47. "DemandGradePlan",
  48. "DemandGradePlanGroup",
  49. "DemandGradePlanGroupItem",
  50. "DemandPopularityStats",
  51. "DemandVideoExpansion",
  52. "DemandVideoExpansionRun",
  53. "GeneratedDemand",
  54. "GlobalTreeCategory",
  55. "GlobalTreeElement",
  56. "MultiDemandPoolDi",
  57. "MultiDemandVideoDetail",
  58. "MultiDemandVideoPoint",
  59. "OssLog",
  60. "PipelineLock",
  61. "PipelineOutbox",
  62. "PipelineRun",
  63. "PipelineStepRun",
  64. "VideoDiscoveryCandidate",
  65. "VideoDiscoveryRun",
  66. "VideoDiscoverySearch",
  67. ]