mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-09-03 06:31:37 +08:00
feat(nginx-log): 新增 6 张表 phinx migration + Scheme + model
This commit is contained in:
20
app/admin/model/NginxStatUa.php
Normal file
20
app/admin/model/NginxStatUa.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace app\admin\model;
|
||||
|
||||
use app\common\model\TimeModel;
|
||||
|
||||
/**
|
||||
* @property int $id
|
||||
* @property int $stat_date 统计日期(YYYYMMDD)
|
||||
* @property string $ua_type UA 类型(browser/spider/unknown)
|
||||
* @property string $ua_name UA 名称
|
||||
* @property int $pv 页面浏览量
|
||||
* @property int $uv 独立访客数
|
||||
*/
|
||||
class NginxStatUa extends TimeModel
|
||||
{
|
||||
protected $name = 'nginx_stat_ua';
|
||||
|
||||
protected $deleteTime = false;
|
||||
}
|
||||
Reference in New Issue
Block a user