feat: 增加主机节点服务类

This commit is contained in:
augushong
2025-08-23 22:30:33 +08:00
parent 171c6cfca3
commit 46722e5a66
2 changed files with 135 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace app\common\service;
use base\common\service\HostServiceBase;
/**
* 主机(节点)服务
* 用于注册、上报主机心跳及性能指标
*/
class HostService extends HostServiceBase
{
// 未来可以在这里重写父类方法或添加新的方法,以满足特定业务需求
}