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.

27 lines
333 B

3 years ago
<?php
defined('BASE_PATH') OR exit('No direct script access allowed');
/**
* 余额支付插件类
*/
class balance
{
/**
* 提交函数
*/
function get_code()
{
return '';
}
/**
* 处理函数
*/
function response()
{
return;
}
}
3 years ago
?>