/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/java/java-503-22-019/main.java
16 строк
425 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
import org.springframework.Data.annotation.Id; import org.springframework.Data.relational.core.mapping.Table; @Table("books") public record Book( @Id Long id, String title, String author, String isbn, Integer publishedYear, Boolean available ) { public Book(String title, String author, String isbn, Integer publishedYear) { this(null, title, author, isbn, publishedYear, true); } }