package com.jierui.bookmanager.entity;
import java.util.Date;
public class Books {
//编号、名称、作者、价格、发布日期、库存
private String bookID;
private String name;
private String author;
private float pirce;
private Date data;
private float leave;
public Books(String bookID, String name, String author, float pirce,
Date data, float leave) {
super();
this.bookID = bookID;
this.name = name;
this.author = author;
this.pirce = pirce;
this.data = data;
this.leave = leave;
}
public Books() {
super();
}
public String getBookID() {
return bookID;
}
public void setBookID(String bookID) {
this.bookID = bookID;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
public float getPirce() {
return pirce;
}
public void setPirce(float pirce) {
this.pirce = pirce;
}
public Date getData() {
return data;
}
public void setData(Date data) {
this.data = data;
}
public float getLeave() {
return leave;
}
public void setLeave(float leave) {
this.leave = leave;
}
}