You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
1.8 KiB
101 lines
1.8 KiB
<?php
|
|
/**
|
|
* 苏宁开放平台接口 - 购物返券活动批量查询
|
|
*
|
|
* @author suning
|
|
* @date 2014-10-16
|
|
*/
|
|
class QueryShoppingCouponRequest extends SelectSuningRequest{
|
|
|
|
/**
|
|
* 时间类型
|
|
*/
|
|
private $timeType;
|
|
|
|
/**
|
|
* 查询开始时间
|
|
*/
|
|
private $startTime;
|
|
|
|
/**
|
|
* 查询结束时间
|
|
*/
|
|
private $endTime;
|
|
|
|
/**
|
|
* 活动状态编码
|
|
*/
|
|
private $statusCode;
|
|
|
|
/**
|
|
* 活动范围
|
|
*/
|
|
private $range;
|
|
|
|
|
|
|
|
public function getTimeType() {
|
|
return $this->timeType;
|
|
}
|
|
|
|
public function setTimeType($timeType) {
|
|
$this->timeType = $timeType;
|
|
$this->apiParams["timeType"] = $timeType;
|
|
}
|
|
|
|
public function getStartTime() {
|
|
return $this->startTime;
|
|
}
|
|
|
|
public function setStartTime($startTime) {
|
|
$this->startTime = $startTime;
|
|
$this->apiParams["startTime"] = $startTime;
|
|
}
|
|
|
|
public function getEndTime() {
|
|
return $this->endTime;
|
|
}
|
|
|
|
public function setEndTime($endTime) {
|
|
$this->endTime = $endTime;
|
|
$this->apiParams["endTime"] = $endTime;
|
|
}
|
|
|
|
public function getStatusCode() {
|
|
return $this->statusCode;
|
|
}
|
|
|
|
public function setStatusCode($statusCode) {
|
|
$this->statusCode = $statusCode;
|
|
$this->apiParams["statusCode"] = $statusCode;
|
|
}
|
|
|
|
public function getRange() {
|
|
return $this->range;
|
|
}
|
|
|
|
public function setRange($range) {
|
|
$this->range = $range;
|
|
$this->apiParams["range"] = $range;
|
|
}
|
|
|
|
public function getApiMethodName(){
|
|
return 'suning.custom.shoppingcoupon.query';
|
|
}
|
|
|
|
public function getApiParams(){
|
|
return $this->apiParams;
|
|
}
|
|
|
|
public function check(){
|
|
//非空校验
|
|
RequestCheckUtil::checkNotNull($this->timeType, 'timeType');
|
|
}
|
|
|
|
public function getBizName(){
|
|
return "queryShoppingCoupon";
|
|
}
|
|
|
|
}
|
|
|
|
?>
|