云账号SDK更换
This commit is contained in:
97
extend/Yzh/Model/Realname/CollectRealNameInfoRequest.php
Normal file
97
extend/Yzh/Model/Realname/CollectRealNameInfoRequest.php
Normal file
@@ -0,0 +1,97 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Realname;
|
||||
|
||||
use Yzh\Model\BaseRequest;
|
||||
|
||||
/**
|
||||
|
||||
* Class CollectRealNameInfoRequest
|
||||
*/
|
||||
class CollectRealNameInfoRequest extends BaseRequest
|
||||
{
|
||||
/**
|
||||
* 综合服务主体 ID
|
||||
* @var string
|
||||
*/
|
||||
public $broker_id;
|
||||
/**
|
||||
* 平台企业 ID
|
||||
* @var string
|
||||
*/
|
||||
public $dealer_id;
|
||||
/**
|
||||
* 姓名
|
||||
* @var string
|
||||
*/
|
||||
public $real_name;
|
||||
/**
|
||||
* 证件号码
|
||||
* @var string
|
||||
*/
|
||||
public $id_card;
|
||||
/**
|
||||
* 实名认证结果
|
||||
* @var int32
|
||||
*/
|
||||
public $realname_result;
|
||||
/**
|
||||
* 实名认证通过时间
|
||||
* @var string
|
||||
*/
|
||||
public $realname_time;
|
||||
/**
|
||||
* 实名认证方式
|
||||
* @var int32
|
||||
*/
|
||||
public $realname_type;
|
||||
/**
|
||||
* 实名认证唯一可追溯编码
|
||||
* @var string
|
||||
*/
|
||||
public $realname_trace_id;
|
||||
/**
|
||||
* 认证平台
|
||||
* @var string
|
||||
*/
|
||||
public $realname_platform;
|
||||
/**
|
||||
* 人脸照片
|
||||
* @var string
|
||||
*/
|
||||
public $face_image;
|
||||
/**
|
||||
* 人脸识别验证分数
|
||||
* @var string
|
||||
*/
|
||||
public $face_verify_score;
|
||||
/**
|
||||
* 银行卡号
|
||||
* @var string
|
||||
*/
|
||||
public $bank_no;
|
||||
/**
|
||||
* 银行预留手机号
|
||||
* @var string
|
||||
*/
|
||||
public $bank_phone;
|
||||
/**
|
||||
* 平台企业审核人
|
||||
* @var string
|
||||
*/
|
||||
public $reviewer;
|
||||
/**
|
||||
* 人脸照片收集类型
|
||||
* @var int32
|
||||
*/
|
||||
public $face_image_collect_type;
|
||||
|
||||
public function __construct($params = array())
|
||||
{
|
||||
foreach (array_keys(get_object_vars($this)) as $property) {
|
||||
if (isset($params[$property])) {
|
||||
$this->{$property} = $params[$property];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
33
extend/Yzh/Model/Realname/CollectRealNameInfoResponse.php
Normal file
33
extend/Yzh/Model/Realname/CollectRealNameInfoResponse.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Realname;
|
||||
|
||||
use Yzh\Model\BaseResponse;
|
||||
use Yzh\Model\ResponseInterface;
|
||||
|
||||
/**
|
||||
|
||||
* Class CollectRealNameInfoResponse
|
||||
*/
|
||||
class CollectRealNameInfoResponse extends BaseResponse implements ResponseInterface
|
||||
{
|
||||
/**
|
||||
* 获取数据对象
|
||||
* @return CollectRealNameInfoResponseData
|
||||
*/
|
||||
public function getData()
|
||||
{
|
||||
return $this->data;
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置数据对象
|
||||
* @param array $data
|
||||
* @return self
|
||||
*/
|
||||
public function setData($data)
|
||||
{
|
||||
$this->data = new CollectRealNameInfoResponseData($data);
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Realname;
|
||||
|
||||
use Yzh\Model\BaseModel;
|
||||
use Yzh\Model\ResponseDataInterface;
|
||||
|
||||
/**
|
||||
|
||||
* Class CollectRealNameInfoResponseData
|
||||
*/
|
||||
class CollectRealNameInfoResponseData extends BaseModel implements ResponseDataInterface
|
||||
{
|
||||
/**
|
||||
* 录入状态
|
||||
* @var string
|
||||
*/
|
||||
protected $status;
|
||||
|
||||
/**
|
||||
* 录入状态
|
||||
* @var string $status
|
||||
*/
|
||||
public function setStatus($status)
|
||||
{
|
||||
$this->status = $status;
|
||||
}
|
||||
|
||||
/**
|
||||
* 录入状态
|
||||
* @return string
|
||||
*/
|
||||
public function getStatus()
|
||||
{
|
||||
return $this->status;
|
||||
}
|
||||
}
|
||||
42
extend/Yzh/Model/Realname/QueryRealNameInfoRequest.php
Normal file
42
extend/Yzh/Model/Realname/QueryRealNameInfoRequest.php
Normal file
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Realname;
|
||||
|
||||
use Yzh\Model\BaseRequest;
|
||||
|
||||
/**
|
||||
|
||||
* Class QueryRealNameInfoRequest
|
||||
*/
|
||||
class QueryRealNameInfoRequest extends BaseRequest
|
||||
{
|
||||
/**
|
||||
* 综合服务主体 ID
|
||||
* @var string
|
||||
*/
|
||||
public $broker_id;
|
||||
/**
|
||||
* 平台企业 ID
|
||||
* @var string
|
||||
*/
|
||||
public $dealer_id;
|
||||
/**
|
||||
* 姓名
|
||||
* @var string
|
||||
*/
|
||||
public $real_name;
|
||||
/**
|
||||
* 证件号码
|
||||
* @var string
|
||||
*/
|
||||
public $id_card;
|
||||
|
||||
public function __construct($params = array())
|
||||
{
|
||||
foreach (array_keys(get_object_vars($this)) as $property) {
|
||||
if (isset($params[$property])) {
|
||||
$this->{$property} = $params[$property];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
33
extend/Yzh/Model/Realname/QueryRealNameInfoResponse.php
Normal file
33
extend/Yzh/Model/Realname/QueryRealNameInfoResponse.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Realname;
|
||||
|
||||
use Yzh\Model\BaseResponse;
|
||||
use Yzh\Model\ResponseInterface;
|
||||
|
||||
/**
|
||||
|
||||
* Class QueryRealNameInfoResponse
|
||||
*/
|
||||
class QueryRealNameInfoResponse extends BaseResponse implements ResponseInterface
|
||||
{
|
||||
/**
|
||||
* 获取数据对象
|
||||
* @return QueryRealNameInfoResponseData
|
||||
*/
|
||||
public function getData()
|
||||
{
|
||||
return $this->data;
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置数据对象
|
||||
* @param array $data
|
||||
* @return self
|
||||
*/
|
||||
public function setData($data)
|
||||
{
|
||||
$this->data = new QueryRealNameInfoResponseData($data);
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
244
extend/Yzh/Model/Realname/QueryRealNameInfoResponseData.php
Normal file
244
extend/Yzh/Model/Realname/QueryRealNameInfoResponseData.php
Normal file
@@ -0,0 +1,244 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Realname;
|
||||
|
||||
use Yzh\Model\BaseModel;
|
||||
use Yzh\Model\ResponseDataInterface;
|
||||
|
||||
/**
|
||||
|
||||
* Class QueryRealNameInfoResponseData
|
||||
*/
|
||||
class QueryRealNameInfoResponseData extends BaseModel implements ResponseDataInterface
|
||||
{
|
||||
/**
|
||||
* 实名认证结果
|
||||
* @var int32
|
||||
*/
|
||||
protected $realname_result;
|
||||
/**
|
||||
* 实名认证通过时间
|
||||
* @var string
|
||||
*/
|
||||
protected $realname_time;
|
||||
/**
|
||||
* 实名认证方式
|
||||
* @var int32
|
||||
*/
|
||||
protected $realname_type;
|
||||
/**
|
||||
* 实名认证唯一可追溯编码
|
||||
* @var string
|
||||
*/
|
||||
protected $realname_trace_id;
|
||||
/**
|
||||
* 认证平台
|
||||
* @var string
|
||||
*/
|
||||
protected $realname_platform;
|
||||
/**
|
||||
* 是否存在人脸照片
|
||||
* @var string
|
||||
*/
|
||||
protected $face_image;
|
||||
/**
|
||||
* 人脸识别验证分数
|
||||
* @var string
|
||||
*/
|
||||
protected $face_verify_score;
|
||||
/**
|
||||
* 银行卡号
|
||||
* @var string
|
||||
*/
|
||||
protected $bank_no;
|
||||
/**
|
||||
* 银行预留手机号
|
||||
* @var string
|
||||
*/
|
||||
protected $bank_phone;
|
||||
/**
|
||||
* 平台企业审核人
|
||||
* @var string
|
||||
*/
|
||||
protected $reviewer;
|
||||
|
||||
/**
|
||||
* 实名认证结果
|
||||
* @var int32 $realname_result
|
||||
*/
|
||||
public function setRealnameResult($realname_result)
|
||||
{
|
||||
$this->realname_result = $realname_result;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实名认证结果
|
||||
* @return int32
|
||||
*/
|
||||
public function getRealnameResult()
|
||||
{
|
||||
return $this->realname_result;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实名认证通过时间
|
||||
* @var string $realname_time
|
||||
*/
|
||||
public function setRealnameTime($realname_time)
|
||||
{
|
||||
$this->realname_time = $realname_time;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实名认证通过时间
|
||||
* @return string
|
||||
*/
|
||||
public function getRealnameTime()
|
||||
{
|
||||
return $this->realname_time;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实名认证方式
|
||||
* @var int32 $realname_type
|
||||
*/
|
||||
public function setRealnameType($realname_type)
|
||||
{
|
||||
$this->realname_type = $realname_type;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实名认证方式
|
||||
* @return int32
|
||||
*/
|
||||
public function getRealnameType()
|
||||
{
|
||||
return $this->realname_type;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实名认证唯一可追溯编码
|
||||
* @var string $realname_trace_id
|
||||
*/
|
||||
public function setRealnameTraceId($realname_trace_id)
|
||||
{
|
||||
$this->realname_trace_id = $realname_trace_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实名认证唯一可追溯编码
|
||||
* @return string
|
||||
*/
|
||||
public function getRealnameTraceId()
|
||||
{
|
||||
return $this->realname_trace_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 认证平台
|
||||
* @var string $realname_platform
|
||||
*/
|
||||
public function setRealnamePlatform($realname_platform)
|
||||
{
|
||||
$this->realname_platform = $realname_platform;
|
||||
}
|
||||
|
||||
/**
|
||||
* 认证平台
|
||||
* @return string
|
||||
*/
|
||||
public function getRealnamePlatform()
|
||||
{
|
||||
return $this->realname_platform;
|
||||
}
|
||||
|
||||
/**
|
||||
* 是否存在人脸照片
|
||||
* @var string $face_image
|
||||
*/
|
||||
public function setFaceImage($face_image)
|
||||
{
|
||||
$this->face_image = $face_image;
|
||||
}
|
||||
|
||||
/**
|
||||
* 是否存在人脸照片
|
||||
* @return string
|
||||
*/
|
||||
public function getFaceImage()
|
||||
{
|
||||
return $this->face_image;
|
||||
}
|
||||
|
||||
/**
|
||||
* 人脸识别验证分数
|
||||
* @var string $face_verify_score
|
||||
*/
|
||||
public function setFaceVerifyScore($face_verify_score)
|
||||
{
|
||||
$this->face_verify_score = $face_verify_score;
|
||||
}
|
||||
|
||||
/**
|
||||
* 人脸识别验证分数
|
||||
* @return string
|
||||
*/
|
||||
public function getFaceVerifyScore()
|
||||
{
|
||||
return $this->face_verify_score;
|
||||
}
|
||||
|
||||
/**
|
||||
* 银行卡号
|
||||
* @var string $bank_no
|
||||
*/
|
||||
public function setBankNo($bank_no)
|
||||
{
|
||||
$this->bank_no = $bank_no;
|
||||
}
|
||||
|
||||
/**
|
||||
* 银行卡号
|
||||
* @return string
|
||||
*/
|
||||
public function getBankNo()
|
||||
{
|
||||
return $this->bank_no;
|
||||
}
|
||||
|
||||
/**
|
||||
* 银行预留手机号
|
||||
* @var string $bank_phone
|
||||
*/
|
||||
public function setBankPhone($bank_phone)
|
||||
{
|
||||
$this->bank_phone = $bank_phone;
|
||||
}
|
||||
|
||||
/**
|
||||
* 银行预留手机号
|
||||
* @return string
|
||||
*/
|
||||
public function getBankPhone()
|
||||
{
|
||||
return $this->bank_phone;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业审核人
|
||||
* @var string $reviewer
|
||||
*/
|
||||
public function setReviewer($reviewer)
|
||||
{
|
||||
$this->reviewer = $reviewer;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业审核人
|
||||
* @return string
|
||||
*/
|
||||
public function getReviewer()
|
||||
{
|
||||
return $this->reviewer;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user