V2MerchantComplaintUpdateRefundprogressRequest.cs 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. using System;
  2. namespace BasePaySdk.Request
  3. {
  4. /**
  5. * 更新退款审批结果
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. public class V2MerchantComplaintUpdateRefundprogressRequest : BaseRequest
  11. {
  12. /**
  13. * 请求流水号
  14. */
  15. private string reqSeqId;
  16. /**
  17. * 请求时间
  18. */
  19. private string reqDate;
  20. /**
  21. * 投诉单号
  22. */
  23. private string complaintId;
  24. /**
  25. * 审批动作
  26. */
  27. private string action;
  28. /**
  29. * 微信商户号
  30. */
  31. private string mchId;
  32. public override string getFunctionCode() {
  33. return FunctionCodeEnum.V2_MERCHANT_COMPLAINT_UPDATE_REFUNDPROGRESS;
  34. }
  35. public V2MerchantComplaintUpdateRefundprogressRequest() {
  36. }
  37. public V2MerchantComplaintUpdateRefundprogressRequest(string reqSeqId, string reqDate, string complaintId, string action, string mchId) {
  38. this.reqSeqId = reqSeqId;
  39. this.reqDate = reqDate;
  40. this.complaintId = complaintId;
  41. this.action = action;
  42. this.mchId = mchId;
  43. }
  44. public string getReqSeqId() {
  45. return reqSeqId;
  46. }
  47. public void setReqSeqId(string reqSeqId) {
  48. this.reqSeqId = reqSeqId;
  49. }
  50. public string getReqDate() {
  51. return reqDate;
  52. }
  53. public void setReqDate(string reqDate) {
  54. this.reqDate = reqDate;
  55. }
  56. public string getComplaintId() {
  57. return complaintId;
  58. }
  59. public void setComplaintId(string complaintId) {
  60. this.complaintId = complaintId;
  61. }
  62. public string getAction() {
  63. return action;
  64. }
  65. public void setAction(string action) {
  66. this.action = action;
  67. }
  68. public string getMchId() {
  69. return mchId;
  70. }
  71. public void setMchId(string mchId) {
  72. this.mchId = mchId;
  73. }
  74. }
  75. }