V2TradeHostingPaymentPreorderWxRequest.cs 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. using System;
  2. namespace BasePaySdk.Request
  3. {
  4. /**
  5. * 微信小程序预下单接口
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. public class V2TradeHostingPaymentPreorderWxRequest : BaseRequest
  11. {
  12. /**
  13. * 预下单类型
  14. */
  15. private string preOrderType;
  16. /**
  17. * 请求日期
  18. */
  19. private string reqDate;
  20. /**
  21. * 请求流水号
  22. */
  23. private string reqSeqId;
  24. /**
  25. * 商户号
  26. */
  27. private string huifuId;
  28. /**
  29. * 交易金额
  30. */
  31. private string transAmt;
  32. /**
  33. * 商品描述
  34. */
  35. private string goodsDesc;
  36. /**
  37. * 微信小程序扩展参数集合
  38. */
  39. private string miniappData;
  40. public override string getFunctionCode() {
  41. return FunctionCodeEnum.V2_TRADE_HOSTING_PAYMENT_PREORDER;
  42. }
  43. public V2TradeHostingPaymentPreorderWxRequest() {
  44. }
  45. public V2TradeHostingPaymentPreorderWxRequest(string preOrderType, string reqDate, string reqSeqId, string huifuId, string transAmt, string goodsDesc, string miniappData) {
  46. this.preOrderType = preOrderType;
  47. this.reqDate = reqDate;
  48. this.reqSeqId = reqSeqId;
  49. this.huifuId = huifuId;
  50. this.transAmt = transAmt;
  51. this.goodsDesc = goodsDesc;
  52. this.miniappData = miniappData;
  53. }
  54. public string getPreOrderType() {
  55. return preOrderType;
  56. }
  57. public void setPreOrderType(string preOrderType) {
  58. this.preOrderType = preOrderType;
  59. }
  60. public string getReqDate() {
  61. return reqDate;
  62. }
  63. public void setReqDate(string reqDate) {
  64. this.reqDate = reqDate;
  65. }
  66. public string getReqSeqId() {
  67. return reqSeqId;
  68. }
  69. public void setReqSeqId(string reqSeqId) {
  70. this.reqSeqId = reqSeqId;
  71. }
  72. public string getHuifuId() {
  73. return huifuId;
  74. }
  75. public void setHuifuId(string huifuId) {
  76. this.huifuId = huifuId;
  77. }
  78. public string getTransAmt() {
  79. return transAmt;
  80. }
  81. public void setTransAmt(string transAmt) {
  82. this.transAmt = transAmt;
  83. }
  84. public string getGoodsDesc() {
  85. return goodsDesc;
  86. }
  87. public void setGoodsDesc(string goodsDesc) {
  88. this.goodsDesc = goodsDesc;
  89. }
  90. public string getMiniappData() {
  91. return miniappData;
  92. }
  93. public void setMiniappData(string miniappData) {
  94. this.miniappData = miniappData;
  95. }
  96. }
  97. }