Exemple #1
0
 public void read__(IceInternal.BasicStream is__)
 {
     Id             = is__.readInt();
     ClientId       = is__.readInt();
     ClientName     = is__.readString();
     Password       = is__.readString();
     ComPassword    = is__.readString();
     FundType       = (PortServerIce.PSIceFundType)is__.readEnum(1);
     BrokerName     = is__.readString();
     DepartmentNo   = is__.readString();
     FundName       = is__.readString();
     SHStockAccount = is__.readString();
     SZStockAccount = is__.readString();
     Node           = is__.readString();
 }
Exemple #2
0
 public PSIceAccount(int Id, int ClientId, string ClientName, string Password, string ComPassword, PortServerIce.PSIceFundType FundType, string BrokerName, string DepartmentNo, string FundName, string SHStockAccount, string SZStockAccount, string Node)
 {
     this.Id             = Id;
     this.ClientId       = ClientId;
     this.ClientName     = ClientName;
     this.Password       = Password;
     this.ComPassword    = ComPassword;
     this.FundType       = FundType;
     this.BrokerName     = BrokerName;
     this.DepartmentNo   = DepartmentNo;
     this.FundName       = FundName;
     this.SHStockAccount = SHStockAccount;
     this.SZStockAccount = SZStockAccount;
     this.Node           = Node;
 }