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
465 B
32 lines
465 B
5 months ago
|
<?php
|
||
|
|
||
|
namespace BsPaySdk\request;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @Description: 支付基础参数
|
||
|
*
|
||
|
*/
|
||
|
class BaseRequest {
|
||
|
|
||
|
/**
|
||
|
* 其他拓展信息
|
||
|
*/
|
||
|
protected $extendInfos = array();
|
||
|
|
||
|
/**
|
||
|
* 获取拓展参数
|
||
|
*
|
||
|
*/
|
||
|
public function getExtendInfos() {
|
||
|
return $this->extendInfos;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 新增拓展参数
|
||
|
*
|
||
|
*/
|
||
|
public function setExtendInfo($extendInfos) {
|
||
|
$this->extendInfos = $extendInfos;
|
||
|
}
|
||
|
}
|