Files
midi-php/extend/Yzh/Model/Authentication/IDCardVerifyRequest.php
2025-08-13 10:43:56 +08:00

33 lines
599 B
PHP

<?php
namespace Yzh\Model\Authentication;
use Yzh\Model\BaseRequest;
/**
* 身份证实名验证请求
* Class IDCardVerifyRequest
*/
class IDCardVerifyRequest extends BaseRequest
{
/**
* 身份证号码
* @var string
*/
public $id_card;
/**
* 姓名
* @var string
*/
public $real_name;
public function __construct($params = array())
{
foreach (array_keys(get_object_vars($this)) as $property) {
if (isset($params[$property])) {
$this->{$property} = $params[$property];
}
}
}
}