📄 books.java
字号:
package com.moonman.libraryManager.model.vo;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
/**
* Books generated by MyEclipse - Hibernate Tools
*/
public class Books implements java.io.Serializable {
// Fields
private Integer classId;
private Place place;
private String title;
private String assTitle;
private String author;
private String isbn;
private String cbs;
private String ztxx;
private String tslx;
private Date cbsj;
private String fzx;
private Float price;
private Float pcje;
private String cover;
private Set stores = new HashSet(0);
// Constructors
/** default constructor */
public Books() {
}
/** minimal constructor */
public Books(Integer classId, String title, String isbn, String tslx) {
this.classId = classId;
this.title = title;
this.isbn = isbn;
this.tslx = tslx;
}
/** full constructor */
public Books(Integer classId, Place place, String title, String assTitle, String author, String isbn, String cbs, String ztxx, String tslx, Date cbsj, String fzx, Float price, Float pcje, String cover, Set stores) {
this.classId = classId;
this.place = place;
this.title = title;
this.assTitle = assTitle;
this.author = author;
this.isbn = isbn;
this.cbs = cbs;
this.ztxx = ztxx;
this.tslx = tslx;
this.cbsj = cbsj;
this.fzx = fzx;
this.price = price;
this.pcje = pcje;
this.cover = cover;
this.stores = stores;
}
// Property accessors
public Integer getClassId() {
return this.classId;
}
public void setClassId(Integer classId) {
this.classId = classId;
}
public Place getPlace() {
return this.place;
}
public void setPlace(Place place) {
this.place = place;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public String getAssTitle() {
return this.assTitle;
}
public void setAssTitle(String assTitle) {
this.assTitle = assTitle;
}
public String getAuthor() {
return this.author;
}
public void setAuthor(String author) {
this.author = author;
}
public String getIsbn() {
return this.isbn;
}
public void setIsbn(String isbn) {
this.isbn = isbn;
}
public String getCbs() {
return this.cbs;
}
public void setCbs(String cbs) {
this.cbs = cbs;
}
public String getZtxx() {
return this.ztxx;
}
public void setZtxx(String ztxx) {
this.ztxx = ztxx;
}
public String getTslx() {
return this.tslx;
}
public void setTslx(String tslx) {
this.tslx = tslx;
}
public Date getCbsj() {
return this.cbsj;
}
public void setCbsj(Date cbsj) {
this.cbsj = cbsj;
}
public String getFzx() {
return this.fzx;
}
public void setFzx(String fzx) {
this.fzx = fzx;
}
public Float getPrice() {
return this.price;
}
public void setPrice(Float price) {
this.price = price;
}
public Float getPcje() {
return this.pcje;
}
public void setPcje(Float pcje) {
this.pcje = pcje;
}
public String getCover() {
return this.cover;
}
public void setCover(String cover) {
this.cover = cover;
}
public Set getStores() {
return this.stores;
}
public void setStores(Set stores) {
this.stores = stores;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -