V2UserBasicdataIndvRequest.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <?php
  2. namespace BsPaySdk\request;
  3. use BsPaySdk\enums\FunctionCodeEnum;
  4. /**
  5. * 个人用户基本信息开户
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. class V2UserBasicdataIndvRequest extends BaseRequest
  11. {
  12. /**
  13. * 请求流水号
  14. */
  15. private $reqSeqId;
  16. /**
  17. * 请求日期
  18. */
  19. private $reqDate;
  20. /**
  21. * 个人姓名
  22. */
  23. private $name;
  24. /**
  25. * 个人证件类型
  26. */
  27. private $certType;
  28. /**
  29. * 个人证件号码
  30. */
  31. private $certNo;
  32. /**
  33. * 个人证件有效期类型
  34. */
  35. private $certValidityType;
  36. /**
  37. * 个人证件有效期开始日期
  38. */
  39. private $certBeginDate;
  40. /**
  41. * 手机号
  42. */
  43. private $mobileNo;
  44. /**
  45. * 地址开通中信E管家必填
  46. */
  47. private $address;
  48. public function getFunctionCode() {
  49. return FunctionCodeEnum::$V2_USER_BASICDATA_INDV;
  50. }
  51. public function getReqSeqId() {
  52. return $this->reqSeqId;
  53. }
  54. public function setReqSeqId($reqSeqId) {
  55. $this->reqSeqId = $reqSeqId;
  56. }
  57. public function getReqDate() {
  58. return $this->reqDate;
  59. }
  60. public function setReqDate($reqDate) {
  61. $this->reqDate = $reqDate;
  62. }
  63. public function getName() {
  64. return $this->name;
  65. }
  66. public function setName($name) {
  67. $this->name = $name;
  68. }
  69. public function getCertType() {
  70. return $this->certType;
  71. }
  72. public function setCertType($certType) {
  73. $this->certType = $certType;
  74. }
  75. public function getCertNo() {
  76. return $this->certNo;
  77. }
  78. public function setCertNo($certNo) {
  79. $this->certNo = $certNo;
  80. }
  81. public function getCertValidityType() {
  82. return $this->certValidityType;
  83. }
  84. public function setCertValidityType($certValidityType) {
  85. $this->certValidityType = $certValidityType;
  86. }
  87. public function getCertBeginDate() {
  88. return $this->certBeginDate;
  89. }
  90. public function setCertBeginDate($certBeginDate) {
  91. $this->certBeginDate = $certBeginDate;
  92. }
  93. public function getMobileNo() {
  94. return $this->mobileNo;
  95. }
  96. public function setMobileNo($mobileNo) {
  97. $this->mobileNo = $mobileNo;
  98. }
  99. public function getAddress() {
  100. return $this->address;
  101. }
  102. public function setAddress($address) {
  103. $this->address = $address;
  104. }
  105. }