REAPI/extend/sdk/taobao/top/request/JdsTradesStatisticsGetRequest.php
2024-09-29 15:43:18 +08:00

49 lines
795 B
PHP
Raw Permalink 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
/**
* TOP API: taobao.jds.trades.statistics.get request
*
* @author auto create
* @since 1.0, 2024.03.14
*/
class JdsTradesStatisticsGetRequest
{
/**
* 查询的日期格式如YYYYMMDD的日期对应的数字
**/
private $date;
private $apiParas = array();
public function setDate($date)
{
$this->date = $date;
$this->apiParas["date"] = $date;
}
public function getDate()
{
return $this->date;
}
public function getApiMethodName()
{
return "taobao.jds.trades.statistics.get";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
RequestCheckUtil::checkNotNull($this->date,"date");
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}