SearchCommissionsParameter.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. using Muchinfo.MTPClient.Data.Enums;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace Muchinfo.MTPClient.Data.Model.Analysis
  7. {
  8. /// <summary>
  9. /// 买卖五档/挂牌摘牌/查询参数
  10. /// </summary>
  11. public class SearchCommissionsParameter
  12. {
  13. private long _goodsId;
  14. /// <summary>
  15. /// 当前商品ID
  16. /// </summary>
  17. public long GoodsId
  18. {
  19. get { return _goodsId; }
  20. set { _goodsId = value; }
  21. }
  22. private Direction _buyOrSell;
  23. /// <summary>
  24. /// 买卖方向
  25. /// </summary>
  26. public Direction BuyOrSell
  27. {
  28. get { return _buyOrSell; }
  29. set { _buyOrSell = value; }
  30. }
  31. private TabContetMode _currentConterModel;
  32. /// <summary>
  33. /// 当前内容模式
  34. /// </summary>
  35. public TabContetMode CurrentContenModel
  36. {
  37. get { return _currentConterModel; }
  38. set { _currentConterModel = value; }
  39. }
  40. }
  41. }