mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-08-30 20:55:32 +08:00
19 lines
321 B
PHP
19 lines
321 B
PHP
<?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;
|
||
|
||
}
|