V2MerchantComplaintAliRiskinfoQueryRequest.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. using System;
  2. namespace BasePaySdk.Request
  3. {
  4. /**
  5. * 支付宝投诉查询
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. public class V2MerchantComplaintAliRiskinfoQueryRequest : BaseRequest
  11. {
  12. /**
  13. * 请求汇付流水号
  14. */
  15. private string reqSeqId;
  16. /**
  17. * 请求汇付时间
  18. */
  19. private string reqDate;
  20. /**
  21. * 开始日期
  22. */
  23. private string beginDate;
  24. /**
  25. * 结束日期
  26. */
  27. private string endDate;
  28. public override string getFunctionCode() {
  29. return FunctionCodeEnum.V2_MERCHANT_COMPLAINT_ALI_RISKINFO_QUERY;
  30. }
  31. public V2MerchantComplaintAliRiskinfoQueryRequest() {
  32. }
  33. public V2MerchantComplaintAliRiskinfoQueryRequest(string reqSeqId, string reqDate, string beginDate, string endDate) {
  34. this.reqSeqId = reqSeqId;
  35. this.reqDate = reqDate;
  36. this.beginDate = beginDate;
  37. this.endDate = endDate;
  38. }
  39. public string getReqSeqId() {
  40. return reqSeqId;
  41. }
  42. public void setReqSeqId(string reqSeqId) {
  43. this.reqSeqId = reqSeqId;
  44. }
  45. public string getReqDate() {
  46. return reqDate;
  47. }
  48. public void setReqDate(string reqDate) {
  49. this.reqDate = reqDate;
  50. }
  51. public string getBeginDate() {
  52. return beginDate;
  53. }
  54. public void setBeginDate(string beginDate) {
  55. this.beginDate = beginDate;
  56. }
  57. public string getEndDate() {
  58. return endDate;
  59. }
  60. public void setEndDate(string endDate) {
  61. this.endDate = endDate;
  62. }
  63. }
  64. }