Files
yusheng-php/extend/Yzh/Model/Bizlicgxv2h5api/NotifyGxV2H5APIAicRequest.php
2025-08-07 20:21:47 +08:00

93 lines
1.7 KiB
PHP

<?php
namespace Yzh\Model\Bizlicgxv2h5api;
use Yzh\Model\BaseRequest;
/**
* 个体工商户注册/注销结果回调通知
* Class NotifyGxV2H5APIAicRequest
*/
class NotifyGxV2H5APIAicRequest extends BaseRequest
{
/**
* 用户唯一标识
* @var string
*/
public $open_id;
/**
* 平台企业端的用户 ID
* @var string
*/
public $dealer_user_id;
/**
* 注册/注销提交时间
* @var string
*/
public $submit_at;
/**
* 注册/注销完成时间
* @var string
*/
public $registed_at;
/**
* 用户注册/注销状态
* @var int32
*/
public $status;
/**
* 注册/注销状态描述
* @var string
*/
public $status_message;
/**
* 注册/注销详情状态码
* @var int32
*/
public $status_detail;
/**
* 注册/注销详情状态码描述
* @var string
*/
public $status_detail_message;
/**
* 平台企业 ID
* @var string
*/
public $dealer_id;
/**
* 综合服务主体 ID
* @var string
*/
public $broker_id;
/**
* 统一社会信用代码
* @var string
*/
public $uscc;
/**
* 身份证号码
* @var string
*/
public $id_card;
/**
* 姓名
* @var string
*/
public $real_name;
/**
* 回调类型
* @var int32
*/
public $type;
public function __construct($params = array())
{
foreach (array_keys(get_object_vars($this)) as $property) {
if (isset($params[$property])) {
$this->{$property} = $params[$property];
}
}
}
}