2023-03-10 16:18:11 +08:00

105 lines
2.4 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* @date 2023年03月9日
* @author刘孝全
* @emailq8197264@126.com
*
* @ 商品参数关联表
*/
namespace app\common\model\merchant\system;
use app\common\model\merchant\store\product\Spu;
use think\Model;
use app\common\model\merchant\community\Community;
use app\common\model\merchant\store\StoreCategory;
use app\common\model\merchant\system\auth\Menu;
use app\common\model\merchant\system\merchant\Merchant;
use app\common\model\merchant\user\User;
class Relevance extends Model
{
protected $connetion = 'shop';
/**
* TODO
* @return string
* @author Qinii
* @day 10/26/21
*/
public static function tablePk(): string
{
return 'relevance_id';
}
/**
* TODO
* @return string
* @author Qinii
* @day 10/26/21
*/
public static function tableName(): string
{
return 'relevance';
}
public function fans()
{
return $this->hasOne(User::class,'uid','left_id');
}
public function focus()
{
return $this->hasOne(User::class,'uid','right_id');
}
public function community()
{
return $this->hasOne(Community::class,'community_id','right_id')
->bind(['community_id','title','image','start','uid','create_time','count_start','author','is_type']);
}
public function getIsStartAttr()
{
return self::where('left_id', $this->right_id)
->where('right_id',$this->left_id)
->where('type', 'fans')
->count() > 0;
}
public function spu()
{
return $this->hasOne(Spu::class, 'spu_id','right_id');
}
public function merchant()
{
return $this->hasOne(Merchant::class, 'mer_id','right_id');
}
public function category()
{
return $this->hasOne(StoreCategory::class, 'store_category_id','right_id');
}
public function auth()
{
return $this->hasOne(Menu::class, 'menu_id','right_id');
}
public function searchLeftIdAttr($query, $value)
{
$query->where('left_id', $value);
}
public function searchRightIdAttr($query, $value)
{
$query->where('right_id', $value);
}
public function searchTypeAttr($query, $value)
{
$query->where('type', $value);
}
}