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.
70 lines
1.1 KiB
70 lines
1.1 KiB
8 months ago
|
<?php
|
||
|
/**
|
||
|
* 苏宁开放平台接口 -
|
||
|
*
|
||
|
* @author suning
|
||
|
* @date 2021-10-9
|
||
|
*/
|
||
|
class NearthreeorderQueryRequest extends SuningRequest{
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $customerName;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $mobNum;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $userName;
|
||
|
|
||
|
public function getCustomerName() {
|
||
|
return $this->customerName;
|
||
|
}
|
||
|
|
||
|
public function setCustomerName($customerName) {
|
||
|
$this->customerName = $customerName;
|
||
|
$this->apiParams["customerName"] = $customerName;
|
||
|
}
|
||
|
|
||
|
public function getMobNum() {
|
||
|
return $this->mobNum;
|
||
|
}
|
||
|
|
||
|
public function setMobNum($mobNum) {
|
||
|
$this->mobNum = $mobNum;
|
||
|
$this->apiParams["mobNum"] = $mobNum;
|
||
|
}
|
||
|
|
||
|
public function getUserName() {
|
||
|
return $this->userName;
|
||
|
}
|
||
|
|
||
|
public function setUserName($userName) {
|
||
|
$this->userName = $userName;
|
||
|
$this->apiParams["userName"] = $userName;
|
||
|
}
|
||
|
|
||
|
public function getApiMethodName(){
|
||
|
return 'suning.custom.nearthreeorder.query';
|
||
|
}
|
||
|
|
||
|
public function getApiParams(){
|
||
|
return $this->apiParams;
|
||
|
}
|
||
|
|
||
|
public function check(){
|
||
|
//非空校验
|
||
|
}
|
||
|
|
||
|
public function getBizName(){
|
||
|
return "queryNearthreeorder";
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|