Newer
Older
CitrusClient / app / src / main / java / com / example / citrusclient / models / BookModel.java
k-sakoda 21 days ago 1 KB accountIdを追加
package com.example.citrusclient.models;

public class BookModel {

    private int bookId;
    private String title;
    private boolean publicity;
    private String color;
    private String time;
    private String accountId;
    private String accountColor;
    private int favoriteCount;

    public int getBookId() {
        return bookId;
    }

    public void setBookId(int bookId) {
        this.bookId = bookId;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public boolean isPublicity() {
        return publicity;
    }

    public void setPublicity(boolean publicity) {
        this.publicity = publicity;
    }

    public String getColor() {
        return color;
    }

    public void setColor(String color) {
        this.color = color;
    }

    public String getTime() {
        return time;
    }

    public void setTime(String time) {
        this.time = time;
    }

    public String getAccountColor() {
        return accountColor;
    }

    public void setAccountColor(String accountColor) {
        this.accountColor = accountColor;
    }

    public int getFavoriteCount() {
        return favoriteCount;
    }

    public void setFavoriteCount(int favoriteCount) {
        this.favoriteCount = favoriteCount;
    }

    public String getAccountId() {
        return accountId;
    }

    public void setAccountId(String accountId) {
        this.accountId = accountId;
    }
}