You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
670 B

1 year ago
  1. namespace Common.Model.KftcSendMoney
  2. {
  3. public class KftcSendMoneyRequest
  4. {
  5. public string CustomerId { get; set; }
  6. public string AccessToken { get; set; }
  7. public string FintechUseNo { get; set; }
  8. public string CollAmt { get; set; }
  9. public string AccountName { get; set; }
  10. public string BankCode { get; set; }
  11. public string AccountNum { get; set; }
  12. public string AccHolderInfoType { get; set; }
  13. public string AccHolderInfo { get; set; }
  14. public string GmeAccessToken { get; set; }
  15. public string GmeBankCode { get; set; }
  16. public string processId { get; set; }
  17. }
  18. }