mirror of
https://github.com/primedigitaltech/market-assistant.git
synced 2026-07-21 23:41:39 +08:00
67 lines
1.7 KiB
Python
67 lines
1.7 KiB
Python
"""Pipeline HTTP API 视图(按领域拆分子模块,本包对外保持与原 ``views.py`` 一致的导出)。"""
|
|
from __future__ import annotations
|
|
|
|
from .dataset_views import (
|
|
JobDatasetCommentsView,
|
|
JobDatasetDetailView,
|
|
JobDatasetExportView,
|
|
JobDatasetMergedView,
|
|
JobDatasetSearchView,
|
|
JobDatasetSummaryView,
|
|
)
|
|
from .ingest_views import JobImportMergedView
|
|
from .job_report_views import (
|
|
JobCompetitorBriefPackView,
|
|
JobCompetitorBriefView,
|
|
JobExportDocumentView,
|
|
JobMarketingDetailPackView,
|
|
JobReportAssetView,
|
|
JobStrategyDraftView,
|
|
)
|
|
from .job_views import (
|
|
JobCancelView,
|
|
JobDetailView,
|
|
JobDownloadView,
|
|
JobListCreateView,
|
|
JobPreviewView,
|
|
JobRegenerateReportView,
|
|
JobResumeView,
|
|
ReportConfigDefaultsView,
|
|
StrategyConfigDefaultsView,
|
|
)
|
|
from .product_views import (
|
|
JdProductDetailView,
|
|
JdProductListView,
|
|
JdProductSnapshotDetailView,
|
|
JdProductSnapshotListView,
|
|
)
|
|
|
|
__all__ = [
|
|
"JobDatasetCommentsView",
|
|
"JobDatasetDetailView",
|
|
"JobDatasetExportView",
|
|
"JobDatasetMergedView",
|
|
"JobDatasetSearchView",
|
|
"JobDatasetSummaryView",
|
|
"JobImportMergedView",
|
|
"JobCompetitorBriefPackView",
|
|
"JobCompetitorBriefView",
|
|
"JobExportDocumentView",
|
|
"JobMarketingDetailPackView",
|
|
"JobReportAssetView",
|
|
"JobStrategyDraftView",
|
|
"JobCancelView",
|
|
"JobDetailView",
|
|
"JobDownloadView",
|
|
"JobListCreateView",
|
|
"JobPreviewView",
|
|
"JobRegenerateReportView",
|
|
"JobResumeView",
|
|
"ReportConfigDefaultsView",
|
|
"StrategyConfigDefaultsView",
|
|
"JdProductDetailView",
|
|
"JdProductListView",
|
|
"JdProductSnapshotDetailView",
|
|
"JdProductSnapshotListView",
|
|
]
|