BaseManager.cs 909 B

123456789101112131415161718192021222324252627282930
  1. using TrendChartSDK.Entity;
  2. namespace TrendChartSDK.TrendChartManager
  3. {
  4. /// <summary>
  5. /// 基类
  6. /// </summary>
  7. public abstract class BaseManager
  8. {
  9. #region 彩种分类编码
  10. /// <summary>
  11. /// 彩种分类编码
  12. /// </summary>
  13. protected const string LotteryTypeCodeStr = "QGC|全国彩,DFC|地方彩,GPC11X5|11选5,GPCK3|快3,GPCKL12|快乐十二,GPCKLSF|快乐十分,GPCSSC|时时彩,GPCQTC|其他彩种";
  14. #endregion
  15. /// <summary>
  16. /// 走势图彩种大厅
  17. /// </summary>
  18. /// <returns>Json字符串</returns>
  19. public abstract string GetTrendChartList();
  20. /// <summary>
  21. /// 获取走势图Html
  22. /// </summary>
  23. /// <param name="arg">查询参数</param>
  24. /// <returns></returns>
  25. public abstract string GetTrendChartHtml(QueryTrendChartArg arg);
  26. }
  27. }