IStrategy.java 456 B

12345678910111213141516171819202122232425262728293031
  1. package com.smppw.common.pojo;
  2. /**
  3. * @author Rain
  4. * @date 2022/12/9 18:01
  5. * @description
  6. */
  7. public interface IStrategy {
  8. /**
  9. * 获取策略id
  10. */
  11. Integer getStrategyId();
  12. /**
  13. * 获取策略的名称
  14. */
  15. String getStrategyOriginName();
  16. /**
  17. * 获取策略的名称描述
  18. */
  19. String getStrategyNameDesc();
  20. /**
  21. * 获取该策略指数对应的基准id
  22. */
  23. String getBenchmark();
  24. }