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/govbus/PreDepositBalanceGetRequest...

42 lines
733 B

<?php
/**
* 苏宁开放平台接口 -
*
* @author suning
* @date 2022-4-27
*/
class PreDepositBalanceGetRequest extends SuningRequest{
/**
*
*/
private $companyCustNo;
public function getCompanyCustNo() {
return $this->companyCustNo;
}
public function setCompanyCustNo($companyCustNo) {
$this->companyCustNo = $companyCustNo;
$this->apiParams["companyCustNo"] = $companyCustNo;
}
public function getApiMethodName(){
return 'suning.govbus.predepositbalance.get';
}
public function getApiParams(){
return $this->apiParams;
}
public function check(){
//非空校验
}
public function getBizName(){
return "getPreDepositBalance";
}
}
?>