Back to project page Smartlab.
The source code is released under:
Apache License
If you think the Android project Smartlab listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.example.databasetest.data; /*from w ww . ja v a 2s. c om*/ import java.util.Date; public class Book { private Long id; private String name; private Date publishDate; private String isbn; private String publisher; private String author; public String getAuthor() { return author; } public void setAuthor(String author) { this.author = author; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getName() { return name; } public void setName(String bookName) { this.name = bookName; } public Date getPublishDate() { return publishDate; } public void setPublishDate(Date publishDate) { this.publishDate = publishDate; } public String getIsbn() { return isbn; } public void setIsbn(String isbn) { this.isbn = isbn; } public String getPublisher() { return publisher; } public void setPublisher(String publisher) { this.publisher = publisher; } }