mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2026-06-07 20:48:09 +08:00
36 lines
1.3 KiB
PHP
36 lines
1.3 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | WeMall Plugin for ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2022~2024 ThinkAdmin [ thinkadmin.top ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: https://thinkadmin.top
|
||
// +----------------------------------------------------------------------
|
||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||
// +----------------------------------------------------------------------
|
||
// | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-wemall
|
||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wemall
|
||
// +----------------------------------------------------------------------
|
||
|
||
declare (strict_types=1);
|
||
|
||
namespace plugin\wemall\model;
|
||
|
||
/**
|
||
* 用户搜索行为数据
|
||
*
|
||
* @property int $id
|
||
* @property int $sort 排序权重
|
||
* @property int $times 搜索次数
|
||
* @property int $unid 用户编号
|
||
* @property string $create_time 创建时间
|
||
* @property string $keys 关键词
|
||
* @property string $update_time 更新时间
|
||
* @class PluginWemallUserActionSearch
|
||
* @package plugin\wemall\model
|
||
*/
|
||
class PluginWemallUserActionSearch extends AbsUser
|
||
{
|
||
} |