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