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