代码功能更新

This commit is contained in:
root
2025-05-18 07:29:01 +00:00
commit 12b03531c5
2083 changed files with 695218 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
<?php
/**
* 后台系统配置模型
*/
namespace plugin\apidoc\model;
use laytp\BaseModel;
use think\model\concern\SoftDelete;
class Apidoc extends BaseModel
{
use SoftDelete;
protected $name = 'plugin_apidoc';
}