// +---------------------------------------------------------------------- namespace app\common\dao\store; use app\common\dao\BaseDao; use app\common\model\store\StoreActivity; use app\common\model\store\StoreActivityRelated; /** * * Class StoreActivityDao * @package app\common\dao\system\merchant */ class StoreActivityRelatedDao extends BaseDao { protected function getModel(): string { return StoreActivityRelated::class; } public function search(array $where = []) { return $this->getSearch($where); } }