__init__.py 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. """ORM entity models — one file per table."""
  2. from supply_infra.db.models.category_tree_weight import CategoryTreeWeight
  3. from supply_infra.db.models.demand_belong_category import DemandBelongCategory
  4. from supply_infra.db.models.demand_belong_pool_rel import DemandBelongPoolRel
  5. from supply_infra.db.models.demand_grade import DemandGrade
  6. from supply_infra.db.models.demand_grade_category_rel import DemandGradeCategoryRel
  7. from supply_infra.db.models.demand_grade_plan import (
  8. DemandGradePlan,
  9. DemandGradePlanGroup,
  10. DemandGradePlanGroupItem,
  11. )
  12. from supply_infra.db.models.demand_popularity_stats import DemandPopularityStats
  13. from supply_infra.db.models.demand_video_expansion import (
  14. DemandVideoExpansion,
  15. DemandVideoExpansionRun,
  16. )
  17. from supply_infra.db.models.generated_demand import GeneratedDemand
  18. from supply_infra.db.models.global_tree_category import GlobalTreeCategory
  19. from supply_infra.db.models.global_tree_element import GlobalTreeElement
  20. from supply_infra.db.models.multi_demand_pool_di import MultiDemandPoolDi
  21. from supply_infra.db.models.multi_demand_video_detail import MultiDemandVideoDetail
  22. from supply_infra.db.models.multi_demand_video_point import MultiDemandVideoPoint
  23. from supply_infra.db.models.oss_log import OssLog
  24. from supply_infra.db.models.scheduler_job_execution import SchedulerJobExecution
  25. from supply_infra.db.models.video_discovery import (
  26. VideoDiscoveryCandidate,
  27. VideoDiscoveryRun,
  28. VideoDiscoverySearch,
  29. )
  30. __all__ = [
  31. "CategoryTreeWeight",
  32. "DemandBelongCategory",
  33. "DemandBelongPoolRel",
  34. "DemandGrade",
  35. "DemandGradeCategoryRel",
  36. "DemandGradePlan",
  37. "DemandGradePlanGroup",
  38. "DemandGradePlanGroupItem",
  39. "DemandPopularityStats",
  40. "DemandVideoExpansion",
  41. "DemandVideoExpansionRun",
  42. "GeneratedDemand",
  43. "GlobalTreeCategory",
  44. "GlobalTreeElement",
  45. "MultiDemandPoolDi",
  46. "MultiDemandVideoDetail",
  47. "MultiDemandVideoPoint",
  48. "OssLog",
  49. "SchedulerJobExecution",
  50. "VideoDiscoveryCandidate",
  51. "VideoDiscoveryRun",
  52. "VideoDiscoverySearch",
  53. ]