mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-26 03:16:34 +08:00
25 lines
385 B
PHP
25 lines
385 B
PHP
<?php
|
|
/**
|
|
* 处理app_id接入接口权限
|
|
* @since 2017-07-25
|
|
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
|
*/
|
|
|
|
namespace app\admin\behavior;
|
|
|
|
|
|
class ApiPermission {
|
|
|
|
/**
|
|
* 默认行为函数
|
|
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
|
* @return \think\Request
|
|
* @throws \think\exception\DbException
|
|
*/
|
|
public function run() {
|
|
|
|
}
|
|
|
|
|
|
}
|