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

53 lines
1.1 KiB
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 ListDailyOrderSummaryRequest
*/
class ListDailyOrderSummaryRequest extends BaseRequest
{
/**
* 综合服务主体 ID
* @var string
*/
public $broker_id;
/**
* 平台企业 ID
* @var string
*/
public $dealer_id;
/**
* 支付路径,银行卡、支付宝、微信
* @var string
*/
public $channel;
/**
* 订单查询开始日期格式yyyy-MM-dd
* @var string
*/
public $begin_at;
/**
* 订单查询结束日期格式yyyy-MM-dd
* @var string
*/
public $end_at;
/**
* 筛选类型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];
}
}
}
}