feat: 开放API授权相关
This commit is contained in:
32
app/openapi/model/OAuthAccessTokenModel.php
Normal file
32
app/openapi/model/OAuthAccessTokenModel.php
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
declare (strict_types = 1);
|
||||
|
||||
namespace app\openapi\model;
|
||||
|
||||
use think\Model;
|
||||
|
||||
/**
|
||||
* @mixin \think\Model
|
||||
*/
|
||||
class OAuthAccessTokenModel extends Model
|
||||
{
|
||||
// 表名
|
||||
protected $name = 'oauth_access_token';
|
||||
|
||||
// 字段信息
|
||||
protected $schema = [
|
||||
'id' => 'int',
|
||||
'client_id' => 'string',
|
||||
'user_id' => 'int',
|
||||
'access_token' => 'string',
|
||||
'expires' => 'int',
|
||||
'scope' => 'string',
|
||||
'created_at' => 'datetime',
|
||||
];
|
||||
|
||||
// access_token范围查询
|
||||
public function scopeAccessToken($query, $access_token)
|
||||
{
|
||||
$query->where('access_token', '=', $access_token);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user