| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Muchinfo.MTPClient.Data.Model.Account
- {
- public class Member
- {
- public string Address { get; set; }
- public string BusinessLicense { get; set; }
- public string BusinessNature { get; set; }
- public string BusinessRange{ get; set; }
- public int ChargeDividId{ get; set; }
- public string ChargeDividName{ get; set; }
- public int ComMemOrderRight{ get; set; }
- public string ContactName{ get; set; }
- public string Email{ get; set; }
- public int ExchId{ get; set; }
- public string Fax{ get; set; }
- public string HighestAreaCode{ get; set; }
- public string LegalName{ get; set; }
- public string LegalPhone{ get; set; }
- public string MarketRight{ get; set; }
- public int MaxSubLevels{ get; set; }
- public string MemberAreaCode{ get; set; }
- public string MemberCode{ get; set; }
- public int MemberID{ get; set; }
- public string MemberName{ get; set; }
- public string MemberPWD{ get; set; }
- public int MemberType{ get; set; }
- public double MinMargin{ get; set; }
- public string OrganizationCode{ get; set; }
- public ArrayOutMoneyThreshold[] OutMoneyThreshold{ get; set; }
- public string Phone{ get; set; }
- public string RelateSpecMem{ get; set; }
- public int RelateSpecMemFlag{ get; set; }
- public double RiskThreshold{ get; set; }
- public ArrayRiskThreshold[] RiskThresholdInfo{ get; set; }
- public string[] SignedComMem{ get; set; }
- public string TaxRegisterNO{ get; set; }
- }
- }
|