V2UserBusiOpenRequest.cs 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. using System;
  2. namespace BasePaySdk.Request
  3. {
  4. /**
  5. * 用户业务入驻
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. public class V2UserBusiOpenRequest : BaseRequest
  11. {
  12. /**
  13. * 汇付ID
  14. */
  15. private string huifuId;
  16. /**
  17. * 请求流水号
  18. */
  19. private string reqSeqId;
  20. /**
  21. * 请求日期
  22. */
  23. private string reqDate;
  24. /**
  25. * 渠道商/商户汇付Id
  26. */
  27. private string upperHuifuId;
  28. /**
  29. * 乐接活配置当合作平台为乐接活,必填
  30. */
  31. private string ljhData;
  32. public override string getFunctionCode() {
  33. return FunctionCodeEnum.V2_USER_BUSI_OPEN;
  34. }
  35. public V2UserBusiOpenRequest() {
  36. }
  37. public V2UserBusiOpenRequest(string huifuId, string reqSeqId, string reqDate, string upperHuifuId, string ljhData) {
  38. this.huifuId = huifuId;
  39. this.reqSeqId = reqSeqId;
  40. this.reqDate = reqDate;
  41. this.upperHuifuId = upperHuifuId;
  42. this.ljhData = ljhData;
  43. }
  44. public string getHuifuId() {
  45. return huifuId;
  46. }
  47. public void setHuifuId(string huifuId) {
  48. this.huifuId = huifuId;
  49. }
  50. public string getReqSeqId() {
  51. return reqSeqId;
  52. }
  53. public void setReqSeqId(string reqSeqId) {
  54. this.reqSeqId = reqSeqId;
  55. }
  56. public string getReqDate() {
  57. return reqDate;
  58. }
  59. public void setReqDate(string reqDate) {
  60. this.reqDate = reqDate;
  61. }
  62. public string getUpperHuifuId() {
  63. return upperHuifuId;
  64. }
  65. public void setUpperHuifuId(string upperHuifuId) {
  66. this.upperHuifuId = upperHuifuId;
  67. }
  68. public string getLjhData() {
  69. return ljhData;
  70. }
  71. public void setLjhData(string ljhData) {
  72. this.ljhData = ljhData;
  73. }
  74. }
  75. }