HistoryEdition.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. //----------------------------------------------------------------
  6. //Module Name: $safeprojectname$
  7. //Purpose:
  8. //CopyRight: Muchinfo
  9. //History:
  10. //----------------------------------------------------------------
  11. //DateTime 2017/2/4 15:41:56
  12. //Author
  13. //Description Create
  14. //----------------------------------------------------------------
  15. namespace Muchinfo.MTPClient.Data.Chart
  16. {
  17. /// <summary>
  18. /// 历史数据协议版本
  19. /// </summary>
  20. public enum HistoryEdition
  21. {
  22. HistoryEdition_NULL = 0,
  23. HistoryEdition_SH_NEW = 1, //鑫牛新版
  24. HistoryEdition_Muchinfo = 2, //多元版
  25. ////2010-08-12 lrt 002 增加历史服务器请求类型
  26. HistoryEdition_Muchinfo_41 = 3, //多元版41
  27. HistoryEdition_Muchinfo_MTP = 4, //多元版MTP
  28. HistoryEdition_Muchinfo_MTP_WITH_SETTLE, //多元版MTP,带上结算价
  29. HistoryEdition_Muchinfo_MTP2
  30. }
  31. /// <summary>
  32. /// 版本类型
  33. /// </summary>
  34. public enum DLLEDITIONTYPE
  35. {
  36. DllEditionType_NULL,
  37. DllEditionType_MuchInfo, //MuchInfo多元世纪交易客户端3.0
  38. DllEditionType_InfoChannel, //InfoChannel科视数码频道
  39. DllEditionType_MuchInfo_Trade4, //MuchInfo多元世纪交易客户端4.0
  40. DllEditionType_MuchInfo_DYBCA, //Muchinfo分析客户端
  41. DllEditionType_DZ_QM, //Muchinfo分析客户端
  42. DllEditionType_MUCHINFO_MTP, //Muchinfo分析客户端
  43. DllEditionType_MUCHINFO_MTPTrader=8, //MTP交易分析系统
  44. }
  45. }