feat(admin): XHProf 性能日志五张表 Scheme 迁移与模型

This commit is contained in:
augushong
2026-08-14 22:04:52 +08:00
parent da388a8c4f
commit 7e73902325
15 changed files with 478 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<?php
namespace app\admin\model;
use app\common\model\TimeModel;
/**
* @property int $id 主键ID
* @property int $run_id 采样记录IDul_xhprof_run.id
* @property int $watch_id 监控规则IDul_xhprof_watch.id
* @property int $ct 命中边次数和
* @property int $wt_sum 命中耗时合计(微秒)
* @property int $wt_max 命中单次最大耗时(微秒)
* @property int $create_time 入库时间戳
*/
class XhprofRunWatch extends TimeModel
{
protected $name = "xhprof_run_watch";
protected $deleteTime = false;
}