using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Muchinfo.MTPClient.Data.Model.Account { /// /// 账户列表MTP2.0 /// public class TAAccountAllModel { #region 字段备注 //TaAccountInfo 资金账户信息 //RealGoodsPositionList 实物持仓列表 //MarketsIdList 市场权限列表 //GoodsPositionList 持仓头寸列表 #endregion /// /// 资金信息/资金账户信息 /// public FundsAccount FundsAccounts { get; set; } /// /// 持仓头寸列表 /// public List GoodsPositionList { get; set; } /// /// 市场权限列表 /// public List MarketsIdList { get; set; } } }