21 lines
322 B
PHP
21 lines
322 B
PHP
<?php
|
|
|
|
|
|
|
|
namespace app\common\dao\community;
|
|
|
|
|
|
use app\common\dao\BaseDao;
|
|
use app\common\model\community\CommunityCategory;
|
|
use crmeb\traits\CategoresDao;
|
|
|
|
class CommunityCategoryDao extends BaseDao
|
|
{
|
|
use CategoresDao;
|
|
|
|
protected function getModel(): string
|
|
{
|
|
return CommunityCategory::class;
|
|
}
|
|
}
|