feat: 新增系统接口表模型

This commit is contained in:
2025-03-18 09:52:42 +08:00
parent ec30eae536
commit b98f02d6b1
2 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
declare (strict_types = 1);
namespace app\admin\model\v1;
use app\common\model\SysRestfulApiBaseModel;
/**
* 系统接口表模型
* @mixin \think\Model
*/
class SysRestfulApiModel extends SysRestfulApiBaseModel
{
//
}