孔祥富
2021-04-01 63c7e9d7051ed6742eb7334346a53376b0247c29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package cc.mrbird.febs.gateway.enhance.mapper;
 
import cc.mrbird.febs.gateway.enhance.entity.BlockLog;
import org.springframework.data.mongodb.repository.ReactiveMongoRepository;
import reactor.core.publisher.Flux;
 
import java.util.Collection;
 
/**
 * @author MrBird
 */
public interface BlockLogMapper extends ReactiveMongoRepository<BlockLog, String> {
 
    /**
     * 删除拦截日志
     *
     * @param ids 日志id
     * @return 被删除的拦截日志
     */
    Flux<BlockLog> deleteByIdIn(Collection<String> ids);
}