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

60 lines
1.8 KiB

10 months ago
<?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;
10 months ago
use app\common\model\GoodsSpecRel as GoodsSpecRelModel;
10 months ago
use think\model\relation\HasMany;
use think\model\relation\HasOne;
10 months ago
/**
* 商品规格关系模型
* Class GoodsSpecRel
* @package app\api\model
*/
class GoodsBrowseLog extends GoodsSpecRelModel
{
10 months ago
// 定义表名
protected $name = 'goods_browse_log';
// 定义主键
protected $pk = 'id';
protected $updateTime = false;
10 months ago
10 months ago
public function sku(): HasOne
10 months ago
{
10 months ago
return $this->hasOne(GoodsSku::class, 'goods_id', 'goods_id')->order(['id' => 'asc']);
10 months ago
}
public function goods(): HasOne
{
10 months ago
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']);
10 months ago
}
10 months ago
public static function getCount(): int
{
// 当前用户ID
$userId = UserService::getCurrentLoginUserId();
// 查询数据
return self::where('user_id', '=', $userId)
->count();
}
10 months ago
}