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 { /// /// 最新价 /// [ItemDisc("ChannelPriceMode_LastestPrice")] LastestPrice = 1, /// /// 对手价 /// [ItemDisc("ChannelPriceMode_MatchPrice")] MatchPrice = 2, /// /// 市价 /// [ItemDisc("ChannelPriceMode_MarketPrice")] MarketPrice = 3, /// /// 超价 /// [ItemDisc("ChannelPriceMode_SuperPrice")] SuperPrice = 4, /// /// 限价 /// [ItemDisc("ChannelPriceMode_LimitPrice")] LimitPrice = 999, } }