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,18 @@
<?php
namespace app\admin\model;
use app\common\model\TimeModel;
/**
* @property int $id 主键,值=ul_xhprof_run.id不自增
* @property string $profile_data 原始 profile JSON
*/
class XhprofRunDetail extends TimeModel
{
protected $name = "xhprof_run_detail";
protected $deleteTime = false;
}