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.
yanzong/extend/suning-sdk-php/request/promotesale/GetFullReductionRequest.php

43 lines
862 B

<?php
/**
* 苏宁开放平台接口 - 满减活动详情查询
*
* @author suning
* @date 2014-10-16
*/
class GetFullReductionRequest extends SuningRequest{
/**
* 满减活动ID
*/
private $fullReductionId;
public function getFullReductionId() {
return $this->fullReductionId;
}
public function setFullReductionId($fullReductionId) {
$this->fullReductionId = $fullReductionId;
$this->apiParams["fullReductionId"] = $fullReductionId;
}
public function getApiMethodName(){
return 'suning.custom.fullreductiondetail.get';
}
public function getApiParams(){
return $this->apiParams;
}
public function check(){
//非空校验
RequestCheckUtil::checkNotNull($this->fullReductionId, 'fullReductionId');
}
public function getBizName(){
return "getFullReduction";
}
}
?>