// +---------------------------------------------------------------------- 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(); } }