This commit is contained in:
www
2026-05-26 17:02:57 +08:00
parent 7f910ee22f
commit 0096805a49
14 changed files with 830 additions and 58 deletions

View File

@@ -0,0 +1,18 @@
<?php
declare(strict_types=1);
namespace app\model;
/**
* 前端服务器节点模型
*
* @mixin \think\Model
*/
class ServerNodeModel extends BaseModel
{
protected $name = 'server_node';
protected $pk = 'sn_id';
protected $createTime = 'created_at';
protected $updateTime = 'updated_at';
}