123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- <?php
- namespace BsPaySdk\request;
- use BsPaySdk\enums\FunctionCodeEnum;
- /**
- * 个人用户基本信息开户
- *
- * @author sdk-generator
- * @Description
- */
- class V2UserBasicdataIndvRequest extends BaseRequest
- {
- /**
- * 请求流水号
- */
- private $reqSeqId;
- /**
- * 请求日期
- */
- private $reqDate;
- /**
- * 个人姓名
- */
- private $name;
- /**
- * 个人证件类型
- */
- private $certType;
- /**
- * 个人证件号码
- */
- private $certNo;
- /**
- * 个人证件有效期类型
- */
- private $certValidityType;
- /**
- * 个人证件有效期开始日期
- */
- private $certBeginDate;
- /**
- * 手机号
- */
- private $mobileNo;
- /**
- * 地址开通中信E管家必填
- */
- private $address;
- public function getFunctionCode() {
- return FunctionCodeEnum::$V2_USER_BASICDATA_INDV;
- }
- public function getReqSeqId() {
- return $this->reqSeqId;
- }
- public function setReqSeqId($reqSeqId) {
- $this->reqSeqId = $reqSeqId;
- }
- public function getReqDate() {
- return $this->reqDate;
- }
- public function setReqDate($reqDate) {
- $this->reqDate = $reqDate;
- }
- public function getName() {
- return $this->name;
- }
- public function setName($name) {
- $this->name = $name;
- }
- public function getCertType() {
- return $this->certType;
- }
- public function setCertType($certType) {
- $this->certType = $certType;
- }
- public function getCertNo() {
- return $this->certNo;
- }
- public function setCertNo($certNo) {
- $this->certNo = $certNo;
- }
- public function getCertValidityType() {
- return $this->certValidityType;
- }
- public function setCertValidityType($certValidityType) {
- $this->certValidityType = $certValidityType;
- }
- public function getCertBeginDate() {
- return $this->certBeginDate;
- }
- public function setCertBeginDate($certBeginDate) {
- $this->certBeginDate = $certBeginDate;
- }
- public function getMobileNo() {
- return $this->mobileNo;
- }
- public function setMobileNo($mobileNo) {
- $this->mobileNo = $mobileNo;
- }
- public function getAddress() {
- return $this->address;
- }
- public function setAddress($address) {
- $this->address = $address;
- }
- }
|