using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Muchinfo.MTPClient.Data.Model
{
///
/// 实物持仓列表
///
public class RealGoodsPositionModel
{
//GoodsId 商品id
//HolderQty 持仓数量
//limitCount 受限数量
//FreezeQty 冻结数量
private uint _GoodsId = uint.MaxValue;
///
/// 商品id
///
public uint GoodsId
{
get { return _GoodsId; }
set { _GoodsId = value; }
}
private uint _HolderQty = uint.MaxValue;
///
/// 持仓数量
///
public uint HolderQty
{
get { return _HolderQty; }
set { _HolderQty = value; }
}
private uint _limitCount = uint.MaxValue;
///
/// 受限数量
///
public uint limitCount
{
get { return _limitCount; }
set { _limitCount = value; }
}
private uint _FreezeQty = uint.MaxValue;
///
/// 冻结数量
///
public uint FreezeQty
{
get { return _FreezeQty; }
set { _FreezeQty = value; }
}
}
}