find(); } public static function deleteByTypeIds($ids,$type) { return self::where([['relation_id', "in",$ids],["type","=",$type]])->delete(); } public static function findByTypeRelaTioneId($relationId,$type) { return self::where([['relation_id', "=",$relationId],["type","=",$type]])->find(); } }