| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using Muchinfo.MTPClient.Data.Enums;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Muchinfo.MTPClient.Data.Model.Analysis
- {
- /// <summary>
- /// 买卖五档/挂牌摘牌/查询参数
- /// </summary>
- public class SearchCommissionsParameter
- {
- private long _goodsId;
- /// <summary>
- /// 当前商品ID
- /// </summary>
- public long GoodsId
- {
- get { return _goodsId; }
- set { _goodsId = value; }
- }
- private Direction _buyOrSell;
- /// <summary>
- /// 买卖方向
- /// </summary>
- public Direction BuyOrSell
- {
- get { return _buyOrSell; }
- set { _buyOrSell = value; }
- }
- private TabContetMode _currentConterModel;
- /// <summary>
- /// 当前内容模式
- /// </summary>
- public TabContetMode CurrentContenModel
- {
- get { return _currentConterModel; }
- set { _currentConterModel = value; }
- }
- }
- }
|