Member.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Muchinfo.MTPClient.Data.Model.Account
  6. {
  7. public class Member
  8. {
  9. public string Address { get; set; }
  10. public string BusinessLicense { get; set; }
  11. public string BusinessNature { get; set; }
  12. public string BusinessRange{ get; set; }
  13. public int ChargeDividId{ get; set; }
  14. public string ChargeDividName{ get; set; }
  15. public int ComMemOrderRight{ get; set; }
  16. public string ContactName{ get; set; }
  17. public string Email{ get; set; }
  18. public int ExchId{ get; set; }
  19. public string Fax{ get; set; }
  20. public string HighestAreaCode{ get; set; }
  21. public string LegalName{ get; set; }
  22. public string LegalPhone{ get; set; }
  23. public string MarketRight{ get; set; }
  24. public int MaxSubLevels{ get; set; }
  25. public string MemberAreaCode{ get; set; }
  26. public string MemberCode{ get; set; }
  27. public int MemberID{ get; set; }
  28. public string MemberName{ get; set; }
  29. public string MemberPWD{ get; set; }
  30. public int MemberType{ get; set; }
  31. public double MinMargin{ get; set; }
  32. public string OrganizationCode{ get; set; }
  33. public ArrayOutMoneyThreshold[] OutMoneyThreshold{ get; set; }
  34. public string Phone{ get; set; }
  35. public string RelateSpecMem{ get; set; }
  36. public int RelateSpecMemFlag{ get; set; }
  37. public double RiskThreshold{ get; set; }
  38. public ArrayRiskThreshold[] RiskThresholdInfo{ get; set; }
  39. public string[] SignedComMem{ get; set; }
  40. public string TaxRegisterNO{ get; set; }
  41. }
  42. }