V2TradePayafteruseInstallmentRefundRequest.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 V2TradePayafteruseInstallmentRefundRequest : BaseRequest
  11. {
  12. /**
  13. * 请求日期
  14. */
  15. private string reqDate;
  16. /**
  17. * 请求流水号
  18. */
  19. private string reqSeqId;
  20. /**
  21. * 商户号
  22. */
  23. private string huifuId;
  24. /**
  25. * 申请退款金额
  26. */
  27. private string ordAmt;
  28. public override string getFunctionCode()
  29. {
  30. return FunctionCodeEnum.V2_TRADE_PAYAFTERUSE_INSTALLMENT_REFUND;
  31. }
  32. public V2TradePayafteruseInstallmentRefundRequest()
  33. {
  34. }
  35. public V2TradePayafteruseInstallmentRefundRequest(string reqDate, string reqSeqId, string huifuId, string ordAmt)
  36. {
  37. this.reqDate = reqDate;
  38. this.reqSeqId = reqSeqId;
  39. this.huifuId = huifuId;
  40. this.ordAmt = ordAmt;
  41. }
  42. public string getReqDate()
  43. {
  44. return reqDate;
  45. }
  46. public void setReqDate(string reqDate)
  47. {
  48. this.reqDate = reqDate;
  49. }
  50. public string getReqSeqId()
  51. {
  52. return reqSeqId;
  53. }
  54. public void setReqSeqId(string reqSeqId)
  55. {
  56. this.reqSeqId = reqSeqId;
  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 getOrdAmt()
  67. {
  68. return ordAmt;
  69. }
  70. public void setOrdAmt(string ordAmt)
  71. {
  72. this.ordAmt = ordAmt;
  73. }
  74. }
  75. }