Files
yusheng-php/extend/Yzh/Model/Dataservice/ListDailyOrderRequest.php

48 lines
959 B
PHP
Raw Normal View History

2025-08-07 20:21:47 +08:00
<?php
namespace Yzh\Model\Dataservice;
use Yzh\Model\BaseRequest;
/**
* 查询日订单数据请求
* Class ListDailyOrderRequest
*/
class ListDailyOrderRequest extends BaseRequest
{
/**
* 订单查询日期, 格式yyyy-MM-dd格式yyyy-MM-dd
* @var string
*/
public $order_date;
/**
* 偏移量
* @var int32
*/
public $offset;
/**
* 长度
* @var int32
*/
public $length;
/**
* 支付路径名,银行卡(默认)、支付宝、微信
* @var string
*/
public $channel;
/**
* 如果为 encryption则对返回的 data 进行加密
* @var string
*/
public $data_type;
public function __construct($params = array())
{
foreach (array_keys(get_object_vars($this)) as $property) {
if (isset($params[$property])) {
$this->{$property} = $params[$property];
}
}
}
}