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.
87 lines
1.6 KiB
87 lines
1.6 KiB
<?php
|
|
/**
|
|
* 苏宁开放平台接口 - 店铺优惠券活动批量查询
|
|
*
|
|
* @author suning
|
|
* @date 2014-10-16
|
|
*/
|
|
class QueryShopCouponRequest extends SelectSuningRequest{
|
|
|
|
/**
|
|
* 时间类型
|
|
*/
|
|
private $timeType;
|
|
|
|
/**
|
|
* 查询开始时间
|
|
*/
|
|
private $startTime;
|
|
|
|
/**
|
|
* 查询结束时间
|
|
*/
|
|
private $endTime;
|
|
|
|
/**
|
|
* 店铺券状态编码
|
|
*/
|
|
private $couponStatusCode;
|
|
|
|
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 getCouponStatusCode() {
|
|
return $this->couponStatusCode;
|
|
}
|
|
|
|
public function setCouponStatusCode($couponStatusCode) {
|
|
$this->couponStatusCode = $couponStatusCode;
|
|
$this->apiParams["couponStatusCode"] = $couponStatusCode;
|
|
}
|
|
|
|
|
|
|
|
public function getApiMethodName(){
|
|
return 'suning.custom.shopcoupon.query';
|
|
}
|
|
|
|
public function getApiParams(){
|
|
return $this->apiParams;
|
|
}
|
|
|
|
public function check(){
|
|
//非空校验
|
|
RequestCheckUtil::checkNotNull($this->timeType, 'timeType');
|
|
}
|
|
|
|
public function getBizName(){
|
|
return "queryShopCoupon";
|
|
}
|
|
|
|
}
|
|
|
|
?>
|