AccountInfoEntity.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. //----------------------------------------------------------------
  6. //Module Name: $safeprojectname$
  7. //Purpose:
  8. //CopyRight: Muchinfo
  9. //History:
  10. //----------------------------------------------------------------
  11. //DateTime 2016/1/20 9:41:32
  12. //Author
  13. //Description Create
  14. //----------------------------------------------------------------
  15. using Muchinfo.MTPClient.Data.Model.Account;
  16. namespace Muchinfo.MTPClient.Data.Model
  17. {
  18. /// <summary>
  19. /// 登录查询基本信息
  20. /// </summary>
  21. public class AccountInfoEntity
  22. {
  23. /// <summary>
  24. /// 账号信息
  25. /// </summary>
  26. public TradeAccount TradeAccount { get; set; }
  27. /// <summary>
  28. /// 资金信息
  29. /// </summary>
  30. public List<FundsAccount> FundsAccounts { get; set; }
  31. /// <summary>
  32. /// 商品组信息
  33. /// </summary>
  34. public List<GoodsGroup> GoodsGroups { get; set; }
  35. /// <summary>
  36. /// 商品信息
  37. /// </summary>
  38. public List<QuoteGoods> QuoteGoodses { get; set; }
  39. }
  40. }