| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- """ORM entity models — one file per table."""
- from supply_infra.db.models.agent_document_injection import AgentDocumentInjection
- from supply_infra.db.models.auth_session import AuthSession
- from supply_infra.db.models.auth_user import AuthUser
- from supply_infra.db.models.category_tree_weight import CategoryTreeWeight
- from supply_infra.db.models.demand_belong_category import DemandBelongCategory
- from supply_infra.db.models.demand_belong_pool_rel import DemandBelongPoolRel
- from supply_infra.db.models.demand_feedback import DemandFeedback
- from supply_infra.db.models.demand_grade import DemandGrade
- from supply_infra.db.models.demand_grade_category_rel import DemandGradeCategoryRel
- from supply_infra.db.models.demand_grade_plan import (
- DemandGradePlan,
- DemandGradePlanGroup,
- DemandGradePlanGroupItem,
- )
- from supply_infra.db.models.demand_popularity_stats import DemandPopularityStats
- from supply_infra.db.models.demand_video_expansion import (
- DemandVideoExpansion,
- DemandVideoExpansionRun,
- )
- from supply_infra.db.models.generated_demand import GeneratedDemand
- from supply_infra.db.models.global_tree_category import GlobalTreeCategory
- from supply_infra.db.models.global_tree_element import GlobalTreeElement
- from supply_infra.db.models.multi_demand_pool_di import MultiDemandPoolDi
- from supply_infra.db.models.multi_demand_video_detail import MultiDemandVideoDetail
- from supply_infra.db.models.multi_demand_video_point import MultiDemandVideoPoint
- from supply_infra.db.models.oss_log import OssLog
- from supply_infra.db.models.pipeline_lock import PipelineLock
- from supply_infra.db.models.pipeline_outbox import PipelineOutbox
- from supply_infra.db.models.pipeline_run import PipelineRun
- from supply_infra.db.models.pipeline_step_run import PipelineStepRun
- from supply_infra.db.models.video_discovery import (
- VideoDiscoveryCandidate,
- VideoDiscoveryRun,
- VideoDiscoverySearch,
- )
- __all__ = [
- "AgentDocumentInjection",
- "AuthSession",
- "AuthUser",
- "CategoryTreeWeight",
- "DemandBelongCategory",
- "DemandBelongPoolRel",
- "DemandFeedback",
- "DemandGrade",
- "DemandGradeCategoryRel",
- "DemandGradePlan",
- "DemandGradePlanGroup",
- "DemandGradePlanGroupItem",
- "DemandPopularityStats",
- "DemandVideoExpansion",
- "DemandVideoExpansionRun",
- "GeneratedDemand",
- "GlobalTreeCategory",
- "GlobalTreeElement",
- "MultiDemandPoolDi",
- "MultiDemandVideoDetail",
- "MultiDemandVideoPoint",
- "OssLog",
- "PipelineLock",
- "PipelineOutbox",
- "PipelineRun",
- "PipelineStepRun",
- "VideoDiscoveryCandidate",
- "VideoDiscoveryRun",
- "VideoDiscoverySearch",
- ]
|