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/vendor/huifurepo/dg-php-sdk/BsPaySdk/request/BaseRequest.php

32 lines
465 B

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