V2MerchantBusiHeadConfigRequest.cs 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. using System;
  2. namespace BasePaySdk.Request
  3. {
  4. /**
  5. * 开通下级商户权限配置接口
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. public class V2MerchantBusiHeadConfigRequest : 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 productId;
  28. /**
  29. * 直属渠道号
  30. */
  31. private string upperHuifuId;
  32. public override string getFunctionCode() {
  33. return FunctionCodeEnum.V2_MERCHANT_BUSI_HEAD_CONFIG;
  34. }
  35. public V2MerchantBusiHeadConfigRequest() {
  36. }
  37. public V2MerchantBusiHeadConfigRequest(string reqSeqId, string reqDate, string huifuId, string productId, string upperHuifuId) {
  38. this.reqSeqId = reqSeqId;
  39. this.reqDate = reqDate;
  40. this.huifuId = huifuId;
  41. this.productId = productId;
  42. this.upperHuifuId = upperHuifuId;
  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 getHuifuId() {
  57. return huifuId;
  58. }
  59. public void setHuifuId(string huifuId) {
  60. this.huifuId = huifuId;
  61. }
  62. public string getProductId() {
  63. return productId;
  64. }
  65. public void setProductId(string productId) {
  66. this.productId = productId;
  67. }
  68. public string getUpperHuifuId() {
  69. return upperHuifuId;
  70. }
  71. public void setUpperHuifuId(string upperHuifuId) {
  72. this.upperHuifuId = upperHuifuId;
  73. }
  74. }
  75. }