V2MerchantBusiConfigRequest.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. using System;
  2. namespace BasePaySdk.Request
  3. {
  4. /**
  5. * 微信商户配置
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. public class V2MerchantBusiConfigRequest : BaseRequest
  11. {
  12. /**
  13. * 请求流水号
  14. */
  15. private string reqSeqId;
  16. /**
  17. * 请求日期
  18. */
  19. private string reqDate;
  20. /**
  21. * 汇付客户Id
  22. */
  23. private string huifuId;
  24. /**
  25. * 业务开通类型
  26. */
  27. private string feeType;
  28. /**
  29. * 公众号支付Appid条件必填,<font color="green">示例值:wx3767c5bd01df5061</font> ;wx_woa_app_id 、wx_woa_path、micro_sub_appid和 wx_applet_app_id四者不能同时为空
  30. */
  31. private string wxWoaAppId;
  32. /**
  33. * 微信公众号授权目录条件必填,<font color="green">示例值:https://paas.huifu.com/shouyintai/demo/h5/</font>;wx_woa_app_id 、wx_woa_path、micro_sub_appid和 wx_applet_app_id四者不能同时为空
  34. */
  35. private string wxWoaPath;
  36. /**
  37. * 微信小程序APPID条件必填,<font color="green">示例值:wx8523175fea790f10</font> ;wx_woa_app_id 、wx_woa_path、micro_sub_appid和 wx_applet_app_id四者不能同时为空
  38. */
  39. private string wxAppletAppId;
  40. public override string getFunctionCode() {
  41. return FunctionCodeEnum.V2_MERCHANT_BUSI_CONFIG;
  42. }
  43. public V2MerchantBusiConfigRequest() {
  44. }
  45. public V2MerchantBusiConfigRequest(string reqSeqId, string reqDate, string huifuId, string feeType, string wxWoaAppId, string wxWoaPath, string wxAppletAppId) {
  46. this.reqSeqId = reqSeqId;
  47. this.reqDate = reqDate;
  48. this.huifuId = huifuId;
  49. this.feeType = feeType;
  50. this.wxWoaAppId = wxWoaAppId;
  51. this.wxWoaPath = wxWoaPath;
  52. this.wxAppletAppId = wxAppletAppId;
  53. }
  54. public string getReqSeqId() {
  55. return reqSeqId;
  56. }
  57. public void setReqSeqId(string reqSeqId) {
  58. this.reqSeqId = reqSeqId;
  59. }
  60. public string getReqDate() {
  61. return reqDate;
  62. }
  63. public void setReqDate(string reqDate) {
  64. this.reqDate = reqDate;
  65. }
  66. public string getHuifuId() {
  67. return huifuId;
  68. }
  69. public void setHuifuId(string huifuId) {
  70. this.huifuId = huifuId;
  71. }
  72. public string getFeeType() {
  73. return feeType;
  74. }
  75. public void setFeeType(string feeType) {
  76. this.feeType = feeType;
  77. }
  78. public string getWxWoaAppId() {
  79. return wxWoaAppId;
  80. }
  81. public void setWxWoaAppId(string wxWoaAppId) {
  82. this.wxWoaAppId = wxWoaAppId;
  83. }
  84. public string getWxWoaPath() {
  85. return wxWoaPath;
  86. }
  87. public void setWxWoaPath(string wxWoaPath) {
  88. this.wxWoaPath = wxWoaPath;
  89. }
  90. public string getWxAppletAppId() {
  91. return wxAppletAppId;
  92. }
  93. public void setWxAppletAppId(string wxAppletAppId) {
  94. this.wxAppletAppId = wxAppletAppId;
  95. }
  96. }
  97. }