You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yanzong/app/api/model/GoodsBrowseLog.php

62 lines
2.0 KiB

<?php
// +----------------------------------------------------------------------
// | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2017~2023 https://www.yiovo.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
// +----------------------------------------------------------------------
// | Author: 萤火科技 <admin@yiovo.com>
// +----------------------------------------------------------------------
declare (strict_types=1);
namespace app\api\model;
use app\api\service\User as UserService;
use app\common\model\GoodsSpecRel as GoodsSpecRelModel;
use think\model\relation\HasMany;
use think\model\relation\HasOne;
/**
* 商品规格关系模型
* Class GoodsSpecRel
* @package app\api\model
*/
class GoodsBrowseLog extends GoodsSpecRelModel
{
// 定义表名
protected $name = 'goods_browse_log';
// 定义主键
protected $pk = 'id';
protected $updateTime = false;
public function sku(): HasOne
{
return $this->hasOne(GoodsSku::class, 'goods_id', 'goods_id')->order(['id' => 'asc']);
}
public function goods(): HasOne
{
return $this->hasOne(Goods::class, 'goods_id', 'goods_id')->withoutField(['content']);
}
public function images(): HasMany
{
return $this->hasMany(GoodsImage::class, 'goods_id', 'goods_id')->order(['id']);
}
public static function getCount(): int
{
// 当前用户ID
$userId = UserService::getCurrentLoginUserId();
// 查询数据
$end_time = date('Y-m-d');
$start_time = date('Y-m-d', strtotime($end_time . ' - 15 days'));
return self::where('user_id', '=', $userId)
->whereBetween('ctime', [$start_time, $end_time])
->count();
}
}