Files
midi-php/extend/Yzh/Model/Calculatelabor/CalculationH5UrlRequest.php

48 lines
862 B
PHP
Raw Normal View History

2025-09-30 14:06:41 +08:00
<?php
namespace Yzh\Model\Calculatelabor;
use Yzh\Model\BaseRequest;
/**
* 连续劳务单笔结算税费测算-H5 请求
* Class CalculationH5UrlRequest
*/
class CalculationH5UrlRequest extends BaseRequest
{
/**
* 平台企业 ID
* @var string
*/
public $dealer_id;
/**
* 综合服务主体 ID
* @var string
*/
public $broker_id;
/**
* 姓名
* @var string
*/
public $real_name;
/**
* 证件号
* @var string
*/
public $id_card;
/**
* 主题颜色
* @var string
*/
public $color;
public function __construct($params = array())
{
foreach (array_keys(get_object_vars($this)) as $property) {
if (isset($params[$property])) {
$this->{$property} = $params[$property];
}
}
}
}