V2TradeBankinstallmentinfoQueryRequest.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 V2TradeBankinstallmentinfoQueryRequest : BaseRequest
  11. {
  12. /**
  13. * 页码
  14. */
  15. private string pageNum;
  16. /**
  17. * 每页条数
  18. */
  19. private string pageSize;
  20. /**
  21. * 产品号
  22. */
  23. private string productId;
  24. public override string getFunctionCode() {
  25. return FunctionCodeEnum.V2_TRADE_BANKINSTALLMENTINFO_QUERY;
  26. }
  27. public V2TradeBankinstallmentinfoQueryRequest() {
  28. }
  29. public V2TradeBankinstallmentinfoQueryRequest(string pageNum, string pageSize, string productId) {
  30. this.pageNum = pageNum;
  31. this.pageSize = pageSize;
  32. this.productId = productId;
  33. }
  34. public string getPageNum() {
  35. return pageNum;
  36. }
  37. public void setPageNum(string pageNum) {
  38. this.pageNum = pageNum;
  39. }
  40. public string getPageSize() {
  41. return pageSize;
  42. }
  43. public void setPageSize(string pageSize) {
  44. this.pageSize = pageSize;
  45. }
  46. public string getProductId() {
  47. return productId;
  48. }
  49. public void setProductId(string productId) {
  50. this.productId = productId;
  51. }
  52. }
  53. }