V2MerchantComplaintReplyRequest.cs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. using System;
  2. namespace BasePaySdk.Request
  3. {
  4. /**
  5. * 回复用户
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. public class V2MerchantComplaintReplyRequest : 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 complaintedMchid;
  28. /**
  29. * 回复内容
  30. */
  31. private string responseContent;
  32. /**
  33. * 跳转链接
  34. */
  35. private string jumpUrl;
  36. /**
  37. * 跳转链接文案
  38. */
  39. private string jumpUrlText;
  40. /**
  41. * 微信商户号
  42. */
  43. private string mchId;
  44. public override string getFunctionCode() {
  45. return FunctionCodeEnum.V2_MERCHANT_COMPLAINT_REPLY;
  46. }
  47. public V2MerchantComplaintReplyRequest() {
  48. }
  49. public V2MerchantComplaintReplyRequest(string reqSeqId, string reqDate, string complaintId, string complaintedMchid, string responseContent, string jumpUrl, string jumpUrlText, string mchId) {
  50. this.reqSeqId = reqSeqId;
  51. this.reqDate = reqDate;
  52. this.complaintId = complaintId;
  53. this.complaintedMchid = complaintedMchid;
  54. this.responseContent = responseContent;
  55. this.jumpUrl = jumpUrl;
  56. this.jumpUrlText = jumpUrlText;
  57. this.mchId = mchId;
  58. }
  59. public string getReqSeqId() {
  60. return reqSeqId;
  61. }
  62. public void setReqSeqId(string reqSeqId) {
  63. this.reqSeqId = reqSeqId;
  64. }
  65. public string getReqDate() {
  66. return reqDate;
  67. }
  68. public void setReqDate(string reqDate) {
  69. this.reqDate = reqDate;
  70. }
  71. public string getComplaintId() {
  72. return complaintId;
  73. }
  74. public void setComplaintId(string complaintId) {
  75. this.complaintId = complaintId;
  76. }
  77. public string getComplaintedMchid() {
  78. return complaintedMchid;
  79. }
  80. public void setComplaintedMchid(string complaintedMchid) {
  81. this.complaintedMchid = complaintedMchid;
  82. }
  83. public string getResponseContent() {
  84. return responseContent;
  85. }
  86. public void setResponseContent(string responseContent) {
  87. this.responseContent = responseContent;
  88. }
  89. public string getJumpUrl() {
  90. return jumpUrl;
  91. }
  92. public void setJumpUrl(string jumpUrl) {
  93. this.jumpUrl = jumpUrl;
  94. }
  95. public string getJumpUrlText() {
  96. return jumpUrlText;
  97. }
  98. public void setJumpUrlText(string jumpUrlText) {
  99. this.jumpUrlText = jumpUrlText;
  100. }
  101. public string getMchId() {
  102. return mchId;
  103. }
  104. public void setMchId(string mchId) {
  105. this.mchId = mchId;
  106. }
  107. }
  108. }