use of com.github.lybgeek.httpclient.dto.BookDTO in project springboot-learning by lyb-geek.
the class HttpClientAppliactionTest method testUpdateBook.
@Test
public void testUpdateBook() {
BookDTO bookDTO = BookDTO.builder().id(1L).bookName("图解Http").author("大神").description("http入门系列教程").price(BigDecimal.valueOf(23.2)).stock(1).build();
bookDTO = bookService.editBook(bookDTO);
System.out.println(bookDTO);
}
Aggregations