using System; using System.Collections.Generic; using System.Linq; using System.Text; //---------------------------------------------------------------- //Module Name: $safeprojectname$ //Purpose: //CopyRight: Muchinfo //History: //---------------------------------------------------------------- //DateTime 2017/1/16 15:21:51 //Author //Description Create //---------------------------------------------------------------- namespace Muchinfo.MTPClient.Data.Model.Bank { public class IdentifyCodeReq { //optional MessageHead Header = 1; // MessageHead // optional string AccountCode = 2; // string 账户 // optional string CusBankID = 3; // string 托管银行编号 // optional string Currency = 4; // string 币种 // optional int32 AccountType = 5; // int32 账户类型 // optional string MobilePhone = 6; // string 移动电话 // optional int64 CustomerSignId = 7; // int64 签约编号 // optional double Amount = 8; // double 入金金额 // optional string BankAccountNo = 9; // string 银行账号 // optional string CardNum = 10; // string 证件号码 // optional int32 CardType = 11; // int32 证件类型 // optional int32 TradeType = 12; // int32 交易类型 // int32 交易类型(1、签约/2、签约信息变更/3、出金/4、入金) // optional string CustomerName = 13; // string 用户姓名 // optional string BankCode = 14; // string 银行编号 /// /// 账户 /// public string AccountCode { get; set; } /// /// 托管银行编号 /// public string CusBankID { get; set; } /// /// 签约编号 /// public long CustomerSignId { get; set; } /// /// 入金金额 /// public decimal Amount { get; set; } /// /// 交易类型 /// public BankTradeType TradeType { get; set; } /// /// 银行账号 /// public string BankAccountNo { get; set; } /// /// 用户姓名 /// public string CustomerName { get; set; } /// /// 银行编号 /// public string BankCode { get; set; } /// /// 账户类型 /// public eUserType AccountType { get; set; } /// /// 移动电话 /// public string MobilePhone { get; set; } /// /// 币种 /// public string Currency { get; set; } /// /// 证件号码 /// public string CardNum { get; set; } /// /// 证件类型 /// public eCardType CardType { get; set; } } // 1、签约/2、签约信息变更/3、出金/4、入金) public enum BankTradeType { /// /// 签约 /// Sign=1, /// /// 签约信息变更 /// UpdateSign=2, /// /// 出金 /// OutAmount=3, /// /// 入金 /// inAmount=4 } }