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

48 lines
1000 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace Yzh\Model\Dataservice;
use Yzh\Model\BaseRequest;
/**
* 查询月订单汇总数据请求
* Class ListMonthlyOrderSummaryRequest
*/
class ListMonthlyOrderSummaryRequest extends BaseRequest
{
/**
* 综合服务主体 ID
* @var string
*/
public $broker_id;
/**
* 平台企业 ID
* @var string
*/
public $dealer_id;
/**
* 支付路径,银行卡、支付宝、微信
* @var string
*/
public $channel;
/**
* 汇总月份格式yyyy-MM
* @var string
*/
public $month;
/**
* 筛选类型apply按订单创建时间汇总 complete按订单完成时间汇总
* @var string
*/
public $filter_type;
public function __construct($params = array())
{
foreach (array_keys(get_object_vars($this)) as $property) {
if (isset($params[$property])) {
$this->{$property} = $params[$property];
}
}
}
}