接口 ProductDAO

  • 所有已知实现类:
    ProductDAOImpl

    public interface ProductDAO
    作者:
    Pengtao Qiu
    • 方法详细资料

      • get

        reactor.core.publisher.Mono<Product> get​(Long id)
      • list

        reactor.core.publisher.Mono<List<Product>> list​(List<Long> idList,
                                                        com.firefly.reactive.adapter.db.ReactiveSQLConnection connection)
      • insert

        reactor.core.publisher.Mono<Long> insert​(Product product)
      • update

        reactor.core.publisher.Mono<Integer> update​(Product product)