/
NikolayIvkin
/
tutorials1
Обзор
Документация
Войти
/
NikolayIvkin
/
tutorials1
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/model/Book.java
42 строки
697 B
sampadawagde
JAVA-3526: Moved spring-mvc-java inside spring-web-modules
29 дек 2020, 21:14
29 дек 2020, 21:14
11dae9e
Код
Авторство
О чём код?
package com.baeldung.model; public class Book { private int id; private String author; private String title; public Book() { } public Book(int id, String author, String title) { this.id = id; this.author = author; this.title = title; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getAuthor() { return author; } public void setAuthor(String author) { this.author = author; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } }