V2TradePayscoreServiceorderCreateRequest.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. using System;
  2. namespace BasePaySdk.Request
  3. {
  4. /**
  5. * 创建支付分订单
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. public class V2TradePayscoreServiceorderCreateRequest : 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 serviceIntroduction;
  28. /**
  29. * 服务风险金
  30. */
  31. private string riskFund;
  32. /**
  33. * 服务时间
  34. */
  35. private string timeRange;
  36. /**
  37. * 商户回调地址
  38. */
  39. private string notifyUrl;
  40. public override string getFunctionCode() {
  41. return FunctionCodeEnum.V2_TRADE_PAYSCORE_SERVICEORDER_CREATE;
  42. }
  43. public V2TradePayscoreServiceorderCreateRequest() {
  44. }
  45. public V2TradePayscoreServiceorderCreateRequest(string reqDate, string reqSeqId, string huifuId, string serviceIntroduction, string riskFund, string timeRange, string notifyUrl) {
  46. this.reqDate = reqDate;
  47. this.reqSeqId = reqSeqId;
  48. this.huifuId = huifuId;
  49. this.serviceIntroduction = serviceIntroduction;
  50. this.riskFund = riskFund;
  51. this.timeRange = timeRange;
  52. this.notifyUrl = notifyUrl;
  53. }
  54. public string getReqDate() {
  55. return reqDate;
  56. }
  57. public void setReqDate(string reqDate) {
  58. this.reqDate = reqDate;
  59. }
  60. public string getReqSeqId() {
  61. return reqSeqId;
  62. }
  63. public void setReqSeqId(string reqSeqId) {
  64. this.reqSeqId = reqSeqId;
  65. }
  66. public string getHuifuId() {
  67. return huifuId;
  68. }
  69. public void setHuifuId(string huifuId) {
  70. this.huifuId = huifuId;
  71. }
  72. public string getServiceIntroduction() {
  73. return serviceIntroduction;
  74. }
  75. public void setServiceIntroduction(string serviceIntroduction) {
  76. this.serviceIntroduction = serviceIntroduction;
  77. }
  78. public string getRiskFund() {
  79. return riskFund;
  80. }
  81. public void setRiskFund(string riskFund) {
  82. this.riskFund = riskFund;
  83. }
  84. public string getTimeRange() {
  85. return timeRange;
  86. }
  87. public void setTimeRange(string timeRange) {
  88. this.timeRange = timeRange;
  89. }
  90. public string getNotifyUrl() {
  91. return notifyUrl;
  92. }
  93. public void setNotifyUrl(string notifyUrl) {
  94. this.notifyUrl = notifyUrl;
  95. }
  96. }
  97. }