mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-08-30 12:45:32 +08:00
feat(nginx-log): 新增 6 张表 phinx migration + Scheme + model
This commit is contained in:
21
app/admin/model/NginxStatUrl.php
Normal file
21
app/admin/model/NginxStatUrl.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace app\admin\model;
|
||||
|
||||
use app\common\model\TimeModel;
|
||||
|
||||
/**
|
||||
* @property int $id
|
||||
* @property int $stat_date 统计日期(YYYYMMDD)
|
||||
* @property string $uri 请求 URI
|
||||
* @property int $pv 页面浏览量
|
||||
* @property int $uv 独立访客数
|
||||
* @property int $total_bytes 总流量(字节)
|
||||
* @property float $avg_request_time 平均请求耗时(秒)
|
||||
*/
|
||||
class NginxStatUrl extends TimeModel
|
||||
{
|
||||
protected $name = 'nginx_stat_url';
|
||||
|
||||
protected $deleteTime = false;
|
||||
}
|
||||
Reference in New Issue
Block a user