Files
orico-official-website/app/index/model/ProductModel.php
jsasg e2265629f9 feat: 产品
refactor: 产品详情页seo
2025-04-27 16:46:05 +08:00

78 lines
1.8 KiB
PHP

<?php
declare (strict_types = 1);
namespace app\index\model;
use app\common\model\ProductBaseModel;
use think\model\concern\SoftDelete;
/**
* 产品模型
* @mixin \think\Model
*/
class ProductModel extends ProductBaseModel
{
// 启用软件删除
use SoftDelete;
// 软件删除时间字段
protected $deleteTime = 'deleted_at';
// 关联产品分类
public function category()
{
return $this->belongsTo(ProductCategoryModel::class, 'category_id', 'id');
}
// 关联sku
public function sku()
{
return $this->hasMany(ProductSkuModel::class, 'product_id', 'id');
}
// 所属分类范围查询
public function scopeByCategory($query, $category)
{
if (is_array($category)) {
$query->whereIn('category_id', $category);
return;
}
$query->where('category_id', '=', $category);
}
// 所属语言范围查询
public function scopeLanguage($query, $language)
{
$query->where('language_id', '=', $language);
}
// 启用状态范围查询
public function scopeEnabled($query)
{
$query->where('status', '=', 1);
}
// 在售状态范围查询
public function scopeOnSale($query, bool $stat = true)
{
$query->where('is_sale', '=', (int)$stat);
}
// 上架状态范围查询
public function scopeOnShelves($query, bool $stat = true)
{
$query->where('is_show', '=', (int)$stat);
}
// 热销状态范围查询
public function scopeHot($query, bool $stat = true)
{
$query->where('is_hot', '=', (int)$stat);
}
// 新品状态范围查询
public function scopeIsNew($query, bool $stat = true)
{
$query->where('is_new', '=', (int)$stat);
}
}