monthly_strategy.py 300 B

12345678910
  1. from app.strategies.impl._monthly_base import MonthlyStrategyBase
  2. class MonthlyStrategy(MonthlyStrategyBase):
  3. """逐月策略:基于 ODPS 聚合实质元素 ROV,产出特征点需求。"""
  4. strategy_id = "monthly"
  5. name = "逐月"
  6. strategy_label = "逐月"
  7. version = "1.0.0"