| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- //----------------------------------------------------------------
- //Module Name: $safeprojectname$
- //Purpose:
- //CopyRight: Muchinfo
- //History:
- //----------------------------------------------------------------
- //DateTime 2017/2/4 15:41:56
- //Author
- //Description Create
- //----------------------------------------------------------------
- namespace Muchinfo.MTPClient.Data.Chart
- {
- /// <summary>
- /// 历史数据协议版本
- /// </summary>
- public enum HistoryEdition
- {
- HistoryEdition_NULL = 0,
- HistoryEdition_SH_NEW = 1, //鑫牛新版
- HistoryEdition_Muchinfo = 2, //多元版
- ////2010-08-12 lrt 002 增加历史服务器请求类型
- HistoryEdition_Muchinfo_41 = 3, //多元版41
- HistoryEdition_Muchinfo_MTP = 4, //多元版MTP
- HistoryEdition_Muchinfo_MTP_WITH_SETTLE, //多元版MTP,带上结算价
- HistoryEdition_Muchinfo_MTP2
- }
- /// <summary>
- /// 版本类型
- /// </summary>
- public enum DLLEDITIONTYPE
- {
- DllEditionType_NULL,
- DllEditionType_MuchInfo, //MuchInfo多元世纪交易客户端3.0
- DllEditionType_InfoChannel, //InfoChannel科视数码频道
- DllEditionType_MuchInfo_Trade4, //MuchInfo多元世纪交易客户端4.0
- DllEditionType_MuchInfo_DYBCA, //Muchinfo分析客户端
- DllEditionType_DZ_QM, //Muchinfo分析客户端
- DllEditionType_MUCHINFO_MTP, //Muchinfo分析客户端
- DllEditionType_MUCHINFO_MTPTrader=8, //MTP交易分析系统
- }
- }
|