| |
---|
| | 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;} |
---|
| | } |
---|
| | |
---|
| | |
accountidを追加しました
accountidを追加しました.
082920b
intomaster
fromscheduleManager
on 16 May