52 lines
1.0 KiB
PHP
52 lines
1.0 KiB
PHP
<?php
|
|
|
|
|
|
namespace app\common\model\store\broadcast;
|
|
|
|
use app\common\model\BaseModel;
|
|
use app\common\model\system\merchant\Merchant;
|
|
|
|
class BroadcastAssistant extends BaseModel
|
|
{
|
|
|
|
public static function tablePk(): ?string
|
|
{
|
|
return 'assistant_id';
|
|
}
|
|
|
|
public static function tableName(): string
|
|
{
|
|
return 'broadcast_assistant';
|
|
}
|
|
|
|
public function merchant()
|
|
{
|
|
return $this->hasOne(Merchant::class, 'mer_id', 'mer_id');
|
|
}
|
|
|
|
public function searchMerIdAttr($query,$value)
|
|
{
|
|
$query->where('mer_id',$value);
|
|
}
|
|
|
|
public function searchUsernameAttr($query,$value)
|
|
{
|
|
$query->whereLike('username',"%{$value}%");
|
|
}
|
|
|
|
public function searchNicknameAttr($query,$value)
|
|
{
|
|
$query->whereLike('nickname',"%{$value}%");
|
|
}
|
|
|
|
public function searchAssistantIdsAttr($query,$value)
|
|
{
|
|
$query->whereIn('assistant_id', $value);
|
|
}
|
|
|
|
public function searchAssistantIdAttr($query,$value)
|
|
{
|
|
$query->where('assistant_id',$value);
|
|
}
|
|
}
|