48 lines
1.2 KiB
PHP
48 lines
1.2 KiB
PHP
<?php
|
||
|
||
namespace Yzh\Model\Apiusersign;
|
||
|
||
use Yzh\Model\BaseRequest;
|
||
|
||
/**
|
||
* 用户解约(测试账号专用接口)请求
|
||
* Class ApiUserSignReleaseRequest
|
||
*/
|
||
class ApiUserSignReleaseRequest extends BaseRequest
|
||
{
|
||
/**
|
||
* 综合服务主体 ID
|
||
* @var string
|
||
*/
|
||
public $broker_id;
|
||
/**
|
||
* 平台企业 ID
|
||
* @var string
|
||
*/
|
||
public $dealer_id;
|
||
/**
|
||
* 姓名
|
||
* @var string
|
||
*/
|
||
public $real_name;
|
||
/**
|
||
* 证件号码
|
||
* @var string
|
||
*/
|
||
public $id_card;
|
||
/**
|
||
* 证件类型 idcard:身份证 passport:护照 mtphkm:港澳居民来往内地通行证 mtpt:台湾居民往来大陆通行证 rphkm:中华人民共和国港澳居民居住证 rpt:中华人民共和国台湾居民居住证 fpr:外国人永久居留身份证 ffwp:中华人民共和国外国人就业许可证书
|
||
* @var string
|
||
*/
|
||
public $card_type;
|
||
|
||
public function __construct($params = array())
|
||
{
|
||
foreach (array_keys(get_object_vars($this)) as $property) {
|
||
if (isset($params[$property])) {
|
||
$this->{$property} = $params[$property];
|
||
}
|
||
}
|
||
}
|
||
}
|