| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Muchinfo.MTPClient.Data.Helper;
- namespace Muchinfo.MTPClient.Data.Enums
- {
- public enum ChannelPriceMode
- {
- /// <summary>
- /// 最新价
- /// </summary>
- [ItemDisc("ChannelPriceMode_LastestPrice")]
- LastestPrice = 1,
- /// <summary>
- /// 对手价
- /// </summary>
- [ItemDisc("ChannelPriceMode_MatchPrice")]
- MatchPrice = 2,
- /// <summary>
- /// 市价
- /// </summary>
- [ItemDisc("ChannelPriceMode_MarketPrice")]
- MarketPrice = 3,
- /// <summary>
- /// 超价
- /// </summary>
- [ItemDisc("ChannelPriceMode_SuperPrice")]
- SuperPrice = 4,
- /// <summary>
- /// 限价
- /// </summary>
- [ItemDisc("ChannelPriceMode_LimitPrice")]
- LimitPrice = 999,
- }
- }
|