feat(nginx-log): 新增 6 张表 phinx migration + Scheme + model

This commit is contained in:
augushong
2026-07-28 00:03:49 +08:00
parent f48e0947cb
commit 0d19881a22
18 changed files with 590 additions and 0 deletions

View 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;
}