V2MerchantAppealListQueryRequest.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 V2MerchantAppealListQueryRequest : BaseRequest
  11. {
  12. /**
  13. * 请求流水号
  14. */
  15. private string reqSeqId;
  16. /**
  17. * 请求日期
  18. */
  19. private string reqDate;
  20. /**
  21. * 分页条数
  22. */
  23. private string pageSize;
  24. /**
  25. * 申诉创建开始日期
  26. */
  27. private string beginDate;
  28. /**
  29. * 申诉创建结束日期
  30. */
  31. private string endDate;
  32. public override string getFunctionCode() {
  33. return FunctionCodeEnum.V2_MERCHANT_APPEAL_LIST_QUERY;
  34. }
  35. public V2MerchantAppealListQueryRequest() {
  36. }
  37. public V2MerchantAppealListQueryRequest(string reqSeqId, string reqDate, string pageSize, string beginDate, string endDate) {
  38. this.reqSeqId = reqSeqId;
  39. this.reqDate = reqDate;
  40. this.pageSize = pageSize;
  41. this.beginDate = beginDate;
  42. this.endDate = endDate;
  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 getPageSize() {
  57. return pageSize;
  58. }
  59. public void setPageSize(string pageSize) {
  60. this.pageSize = pageSize;
  61. }
  62. public string getBeginDate() {
  63. return beginDate;
  64. }
  65. public void setBeginDate(string beginDate) {
  66. this.beginDate = beginDate;
  67. }
  68. public string getEndDate() {
  69. return endDate;
  70. }
  71. public void setEndDate(string endDate) {
  72. this.endDate = endDate;
  73. }
  74. }
  75. }