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,19 @@
<?php
namespace app\admin\model;
use app\common\model\TimeModel;
/**
* @property int $id
* @property int $stat_date 统计日期(YYYYMMDD)
* @property string $referer_domain Referer 来源域名
* @property int $pv 页面浏览量
* @property int $uv 独立访客数
*/
class NginxStatReferer extends TimeModel
{
protected $name = 'nginx_stat_referer';
protected $deleteTime = false;
}