| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Mono<Void> |
deleteByIdIn(List<Long> ids) |
reactor.core.publisher.Flux<DNSRecord> |
findByNameIgnoreCase(String name) |
reactor.core.publisher.Flux<DNSRecord> |
findByNameIgnoreCaseAndType(String name,
int type) |
reactor.core.publisher.Flux<DNSRecord> |
findByType(int type) |
@Query(value="select * from dnsrecord d where upper(d.name) = upper(:name)") reactor.core.publisher.Flux<DNSRecord> findByNameIgnoreCase(String name)
@Query(value="select * from dnsrecord d where upper(d.name) = upper(:name) and d.type = :type") reactor.core.publisher.Flux<DNSRecord> findByNameIgnoreCaseAndType(String name, int type)
@Query(value="select * from dnsrecord d where d.type = :type") reactor.core.publisher.Flux<DNSRecord> findByType(int type)
Copyright © 2020. All rights reserved.