Files
midi-php/extend/Yzh/Model/H5usersign/H5UserSignRequest.php

43 lines
747 B
PHP
Raw Permalink Normal View History

2025-08-13 10:43:56 +08:00
<?php
namespace Yzh\Model\H5usersign;
use Yzh\Model\BaseRequest;
/**
* 申请签约请求
* Class H5UserSignRequest
*/
class H5UserSignRequest extends BaseRequest
{
/**
* H5 签约 token
* @var string
*/
public $token;
/**
* H5 页面主题颜色
* @var string
*/
public $color;
/**
* 回调 URL 地址
* @var string
*/
public $url;
/**
* 跳转 URL
* @var string
*/
public $redirect_url;
public function __construct($params = array())
{
foreach (array_keys(get_object_vars($this)) as $property) {
if (isset($params[$property])) {
$this->{$property} = $params[$property];
}
}
}
}