V2TradePayafteruseInstallmentCreateRequest.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. using System;
  2. namespace BasePaySdk.Request
  3. {
  4. /**
  5. * 分期单创建
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. public class V2TradePayafteruseInstallmentCreateRequest : BaseRequest
  11. {
  12. /**
  13. * 请求流水号
  14. */
  15. private string reqSeqId;
  16. /**
  17. * 请求日期
  18. */
  19. private string reqDate;
  20. /**
  21. * 商户号
  22. */
  23. private string huifuId;
  24. /**
  25. * 分期金额
  26. */
  27. private string fqAmt;
  28. public override string getFunctionCode()
  29. {
  30. return FunctionCodeEnum.V2_TRADE_PAYAFTERUSE_INSTALLMENT_CREATE;
  31. }
  32. public V2TradePayafteruseInstallmentCreateRequest()
  33. {
  34. }
  35. public V2TradePayafteruseInstallmentCreateRequest(string reqSeqId, string reqDate, string huifuId, string fqAmt)
  36. {
  37. this.reqSeqId = reqSeqId;
  38. this.reqDate = reqDate;
  39. this.huifuId = huifuId;
  40. this.fqAmt = fqAmt;
  41. }
  42. public string getReqSeqId()
  43. {
  44. return reqSeqId;
  45. }
  46. public void setReqSeqId(string reqSeqId)
  47. {
  48. this.reqSeqId = reqSeqId;
  49. }
  50. public string getReqDate()
  51. {
  52. return reqDate;
  53. }
  54. public void setReqDate(string reqDate)
  55. {
  56. this.reqDate = reqDate;
  57. }
  58. public string getHuifuId()
  59. {
  60. return huifuId;
  61. }
  62. public void setHuifuId(string huifuId)
  63. {
  64. this.huifuId = huifuId;
  65. }
  66. public string getFqAmt()
  67. {
  68. return fqAmt;
  69. }
  70. public void setFqAmt(string fqAmt)
  71. {
  72. this.fqAmt = fqAmt;
  73. }
  74. }
  75. }