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/sale/SaleareatemplateitemgroupQu...

33 lines
815 B

<?php
/**
* 苏宁开放平台接口 - 销售准备API - 批量查询销售范围关联商品组
*
* $pack suning.custom.saleareatemplateitemgroup.query
* @author 14050890
* @date 2014-06-03
*/
class SaleareatemplateitemgroupQueryRequest extends SelectSuningRequest {
/**
* 根据请求方式,生成相应请求报文
*
* @param $type 请求方式(json或xml,默认xml)
*/
public function getApiParams() {
return $this->apiParams;
}
public function getApiMethodName() {
return 'suning.custom.saleareatemplateitemgroup.query';
}
public function check($pageNoMin = 1, $pageNoMax = 99999, $pageSizeMin = 1, $pageSizeMax = 50) {
parent::check ( 1, 99999, 10, 50 );
}
public function getBizName(){
return "saleAreaTemplateItemGroup";
}
}
?>