// +---------------------------------------------------------------------- namespace app\common\dao\system; use app\common\dao\BaseDao; use app\common\model\system\SystemStorage; class SystemStorageDao extends BaseDao { protected function getModel(): string { return SystemStorage::class; } }