V2TradePayafteruseCreditbizorderCreateRequest.cs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. using System;
  2. namespace BasePaySdk.Request
  3. {
  4. /**
  5. * 服务单创建
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. public class V2TradePayafteruseCreditbizorderCreateRequest : BaseRequest
  11. {
  12. /**
  13. * 请求流水号
  14. */
  15. private string reqSeqId;
  16. /**
  17. * 请求日期
  18. */
  19. private string reqDate;
  20. /**
  21. * 商户号
  22. */
  23. private string huifuId;
  24. /**
  25. * 订单总金额
  26. */
  27. private string transAmt;
  28. /**
  29. * 追踪ID
  30. */
  31. private string sourceId;
  32. /**
  33. * 支付宝用户ID
  34. */
  35. private string buyerId;
  36. /**
  37. * 订单标题
  38. */
  39. private string title;
  40. /**
  41. * 订单类型
  42. */
  43. private string merchantBizType;
  44. /**
  45. * 订单详情地址
  46. */
  47. private string path;
  48. /**
  49. * 芝麻信用服务ID
  50. */
  51. private string zmServiceId;
  52. /**
  53. * 商品详细信息
  54. */
  55. private string itemInfos;
  56. public override string getFunctionCode()
  57. {
  58. return FunctionCodeEnum.V2_TRADE_PAYAFTERUSE_CREDITBIZORDER_CREATE;
  59. }
  60. public V2TradePayafteruseCreditbizorderCreateRequest()
  61. {
  62. }
  63. public V2TradePayafteruseCreditbizorderCreateRequest(string reqSeqId, string reqDate, string huifuId, string transAmt, string sourceId, string buyerId, string title, string merchantBizType, string path, string zmServiceId, string itemInfos)
  64. {
  65. this.reqSeqId = reqSeqId;
  66. this.reqDate = reqDate;
  67. this.huifuId = huifuId;
  68. this.transAmt = transAmt;
  69. this.sourceId = sourceId;
  70. this.buyerId = buyerId;
  71. this.title = title;
  72. this.merchantBizType = merchantBizType;
  73. this.path = path;
  74. this.zmServiceId = zmServiceId;
  75. this.itemInfos = itemInfos;
  76. }
  77. public string getReqSeqId()
  78. {
  79. return reqSeqId;
  80. }
  81. public void setReqSeqId(string reqSeqId)
  82. {
  83. this.reqSeqId = reqSeqId;
  84. }
  85. public string getReqDate()
  86. {
  87. return reqDate;
  88. }
  89. public void setReqDate(string reqDate)
  90. {
  91. this.reqDate = reqDate;
  92. }
  93. public string getHuifuId()
  94. {
  95. return huifuId;
  96. }
  97. public void setHuifuId(string huifuId)
  98. {
  99. this.huifuId = huifuId;
  100. }
  101. public string getTransAmt()
  102. {
  103. return transAmt;
  104. }
  105. public void setTransAmt(string transAmt)
  106. {
  107. this.transAmt = transAmt;
  108. }
  109. public string getSourceId()
  110. {
  111. return sourceId;
  112. }
  113. public void setSourceId(string sourceId)
  114. {
  115. this.sourceId = sourceId;
  116. }
  117. public string getBuyerId()
  118. {
  119. return buyerId;
  120. }
  121. public void setBuyerId(string buyerId)
  122. {
  123. this.buyerId = buyerId;
  124. }
  125. public string getTitle()
  126. {
  127. return title;
  128. }
  129. public void setTitle(string title)
  130. {
  131. this.title = title;
  132. }
  133. public string getMerchantBizType()
  134. {
  135. return merchantBizType;
  136. }
  137. public void setMerchantBizType(string merchantBizType)
  138. {
  139. this.merchantBizType = merchantBizType;
  140. }
  141. public string getPath()
  142. {
  143. return path;
  144. }
  145. public void setPath(string path)
  146. {
  147. this.path = path;
  148. }
  149. public string getZmServiceId()
  150. {
  151. return zmServiceId;
  152. }
  153. public void setZmServiceId(string zmServiceId)
  154. {
  155. this.zmServiceId = zmServiceId;
  156. }
  157. public string getItemInfos()
  158. {
  159. return itemInfos;
  160. }
  161. public void setItemInfos(string itemInfos)
  162. {
  163. this.itemInfos = itemInfos;
  164. }
  165. }
  166. }