45 lines
727 B
PHP
45 lines
727 B
PHP
<?php
|
|
|
|
|
|
|
|
|
|
namespace app\common\model\system\diy;
|
|
|
|
use app\common\model\BaseModel;
|
|
|
|
class PageCategory extends BaseModel
|
|
{
|
|
|
|
public static function tablePk(): string
|
|
{
|
|
return 'id';
|
|
}
|
|
|
|
public static function tableName(): string
|
|
{
|
|
return 'page_category';
|
|
}
|
|
|
|
|
|
public function pageLink()
|
|
{
|
|
return $this->hasMany(PageLink::class,'cate_id','id');
|
|
}
|
|
|
|
public function searchIsMerAttr($query, $value)
|
|
{
|
|
$query->where('is_mer', $value);
|
|
}
|
|
|
|
|
|
public function searchStatusAttr($query,$value)
|
|
{
|
|
$query->where('status',$value);
|
|
}
|
|
|
|
public function searchNotTypeAttr($query, $value)
|
|
{
|
|
$query->where('type', '<>', $value);
|
|
}
|
|
}
|