accountidを追加しました. #117

Merged k-shiomura merged 1 commit into nitta-lab-2024:master from nitta-lab-2024:scheduleManager on 16 May
Showing 1 changed file
View
7
src/main/java/org/ntlab/citrusserver/entities/Book.java
private int bookId;
private String title;
private boolean publicity;
private String color;
private String accountId;
 
 
public Book(Integer bookid, String title, boolean publicity, String color) {
public Book(String accountId, Integer bookid, String title, boolean publicity, String color) {
this.accountId = accountId;
this.bookId = bookid;
 
this.title = title;
this.publicity = publicity;
public void setColor(String c) {color = c;}
public String getColor() {return color;}
public void setBookId(int id) {bookId = id;}
public int getBookId() {return bookId;}
public void setAccountId(String a) {accountId = a;}
public String getAccountId() {return accountId;}
}