using System; using System.Collections.Generic; using System.Linq; using System.Text; //---------------------------------------------------------------- //Module Name: $safeprojectname$ //Purpose: //CopyRight: Muchinfo //History: //---------------------------------------------------------------- //DateTime 2016/1/20 9:41:32 //Author //Description Create //---------------------------------------------------------------- using Muchinfo.MTPClient.Data.Model.Account; namespace Muchinfo.MTPClient.Data.Model { /// /// 登录查询基本信息 /// public class AccountInfoEntity { /// /// 账号信息 /// public TradeAccount TradeAccount { get; set; } /// /// 资金信息 /// public List FundsAccounts { get; set; } /// /// 商品组信息 /// public List GoodsGroups { get; set; } /// /// 商品信息 /// public List QuoteGoodses { get; set; } } }