105 lines
2.4 KiB
PHP
105 lines
2.4 KiB
PHP
<?php
|
||
/**
|
||
* @date :2023年03月9日
|
||
* @author:刘孝全
|
||
* @email:q8197264@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);
|
||
}
|
||
|
||
}
|