|
<?php
|
|
|
|
|
|
|
|
|
|
namespace app\common\dao\system\diy;
|
|
|
|
use app\common\dao\BaseDao;
|
|
use app\common\model\system\diy\PageCategory;
|
|
use app\common\model\system\diy\PageLink;
|
|
|
|
class PageCategoryDao extends BaseDao
|
|
{
|
|
|
|
protected function getModel(): string
|
|
{
|
|
return PageCategory::class;
|
|
}
|
|
|
|
}
|