mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-08-31 05:05:33 +08:00
21 lines
439 B
PHP
21 lines
439 B
PHP
<?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;
|
|
}
|