ChannelPriceMode.cs 925 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Muchinfo.MTPClient.Data.Helper;
  6. namespace Muchinfo.MTPClient.Data.Enums
  7. {
  8. public enum ChannelPriceMode
  9. {
  10. /// <summary>
  11. /// 最新价
  12. /// </summary>
  13. [ItemDisc("ChannelPriceMode_LastestPrice")]
  14. LastestPrice = 1,
  15. /// <summary>
  16. /// 对手价
  17. /// </summary>
  18. [ItemDisc("ChannelPriceMode_MatchPrice")]
  19. MatchPrice = 2,
  20. /// <summary>
  21. /// 市价
  22. /// </summary>
  23. [ItemDisc("ChannelPriceMode_MarketPrice")]
  24. MarketPrice = 3,
  25. /// <summary>
  26. /// 超价
  27. /// </summary>
  28. [ItemDisc("ChannelPriceMode_SuperPrice")]
  29. SuperPrice = 4,
  30. /// <summary>
  31. /// 限价
  32. /// </summary>
  33. [ItemDisc("ChannelPriceMode_LimitPrice")]
  34. LimitPrice = 999,
  35. }
  36. }