V2UserBasicdataIndvRequest.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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. public function getFunctionCode() {
  45. return FunctionCodeEnum::$V2_USER_BASICDATA_INDV;
  46. }
  47. public function getReqSeqId() {
  48. return $this->reqSeqId;
  49. }
  50. public function setReqSeqId($reqSeqId) {
  51. $this->reqSeqId = $reqSeqId;
  52. }
  53. public function getReqDate() {
  54. return $this->reqDate;
  55. }
  56. public function setReqDate($reqDate) {
  57. $this->reqDate = $reqDate;
  58. }
  59. public function getName() {
  60. return $this->name;
  61. }
  62. public function setName($name) {
  63. $this->name = $name;
  64. }
  65. public function getCertType() {
  66. return $this->certType;
  67. }
  68. public function setCertType($certType) {
  69. $this->certType = $certType;
  70. }
  71. public function getCertNo() {
  72. return $this->certNo;
  73. }
  74. public function setCertNo($certNo) {
  75. $this->certNo = $certNo;
  76. }
  77. public function getCertValidityType() {
  78. return $this->certValidityType;
  79. }
  80. public function setCertValidityType($certValidityType) {
  81. $this->certValidityType = $certValidityType;
  82. }
  83. public function getCertBeginDate() {
  84. return $this->certBeginDate;
  85. }
  86. public function setCertBeginDate($certBeginDate) {
  87. $this->certBeginDate = $certBeginDate;
  88. }
  89. public function getMobileNo() {
  90. return $this->mobileNo;
  91. }
  92. public function setMobileNo($mobileNo) {
  93. $this->mobileNo = $mobileNo;
  94. }
  95. }