V2TradeOnlinepaymentBankpayBanklistRequest.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. using System;
  2. namespace BasePaySdk.Request
  3. {
  4. /**
  5. * 网银支持银行列表查询
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. public class V2TradeOnlinepaymentBankpayBanklistRequest : BaseRequest
  11. {
  12. /**
  13. * 商户号
  14. */
  15. private string huifuId;
  16. /**
  17. * 网关支付类型
  18. */
  19. private string gateType;
  20. /**
  21. * 订单类型
  22. */
  23. private string orderType;
  24. public override string getFunctionCode() {
  25. return FunctionCodeEnum.V2_TRADE_ONLINEPAYMENT_BANKPAY_BANKLIST;
  26. }
  27. public V2TradeOnlinepaymentBankpayBanklistRequest() {
  28. }
  29. public V2TradeOnlinepaymentBankpayBanklistRequest(string huifuId, string gateType, string orderType) {
  30. this.huifuId = huifuId;
  31. this.gateType = gateType;
  32. this.orderType = orderType;
  33. }
  34. public string getHuifuId() {
  35. return huifuId;
  36. }
  37. public void setHuifuId(string huifuId) {
  38. this.huifuId = huifuId;
  39. }
  40. public string getGateType() {
  41. return gateType;
  42. }
  43. public void setGateType(string gateType) {
  44. this.gateType = gateType;
  45. }
  46. public string getOrderType() {
  47. return orderType;
  48. }
  49. public void setOrderType(string orderType) {
  50. this.orderType = orderType;
  51. }
  52. }
  53. }