function complete

This commit is contained in:
Juyounglee95
2020-04-22 19:23:59 +09:00
parent f66bc35409
commit 4377352510
20 changed files with 165 additions and 39 deletions

View File

@@ -3,12 +3,21 @@ package library.external;
public class PointSystem {
private Long id;
private Long bookId;
public Long getId() {
return id;
}
public Long getBookId() {
return bookId;
}
public void setBookId(Long bookId) {
this.bookId = bookId;
}
public void setId(Long id) {
this.id = id;
}