Skip to content

Instantly share code, notes, and snippets.

@yusufcakmak
Last active August 29, 2015 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yusufcakmak/1558698eb7f670a66e6c to your computer and use it in GitHub Desktop.
Save yusufcakmak/1558698eb7f670a66e6c to your computer and use it in GitHub Desktop.
package co.mobiwise.hibernate.model;
/**
* Created by yusufcakmak on 8/3/15.
*/
import java.util.Date;
public class Book {
private int id;
private String bookName;
private String bookDesc;
private Date insert_time;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getBookName() {
return bookName;
}
public void setBookName(String bookName) {
this.bookName = bookName;
}
public String getBookDesc() {
return bookDesc;
}
public void setBookDesc(String bookDesc) {
this.bookDesc = bookDesc;
}
public Date getInsertTime() {
return insert_time;
}
public void setInsertTime(Date insert_time) {
this.insert_time = insert_time;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment