63 lines
1.1 KiB
PHP
63 lines
1.1 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Yzh\Model\Bizlicxjjh5api;
|
||
|
|
|
||
|
|
use Yzh\Model\BaseRequest;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 预启动请求
|
||
|
|
* Class H5APIGetStartUrlRequest
|
||
|
|
*/
|
||
|
|
class H5APIGetStartUrlRequest extends BaseRequest
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* 平台企业 ID
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
public $dealer_id;
|
||
|
|
/**
|
||
|
|
* 综合服务主体 ID
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
public $broker_id;
|
||
|
|
/**
|
||
|
|
* 平台企业端的用户 ID
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
public $dealer_user_id;
|
||
|
|
/**
|
||
|
|
* 客户端类型
|
||
|
|
* @var int32
|
||
|
|
*/
|
||
|
|
public $client_type;
|
||
|
|
/**
|
||
|
|
* 异步通知 URL
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
public $notify_url;
|
||
|
|
/**
|
||
|
|
* H5 页面主题颜色
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
public $color;
|
||
|
|
/**
|
||
|
|
* 跳转 URL
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
public $return_url;
|
||
|
|
/**
|
||
|
|
* H5 页面 Title
|
||
|
|
* @var int32
|
||
|
|
*/
|
||
|
|
public $customer_title;
|
||
|
|
|
||
|
|
public function __construct($params = array())
|
||
|
|
{
|
||
|
|
foreach (array_keys(get_object_vars($this)) as $property) {
|
||
|
|
if (isset($params[$property])) {
|
||
|
|
$this->{$property} = $params[$property];
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|