📄 place.java
字号:
package com.moonman.libraryManager.model.vo;
import java.util.HashSet;
import java.util.Set;
/**
* Place generated by MyEclipse - Hibernate Tools
*/
public class Place implements java.io.Serializable {
// Fields
private Integer storeId;
private String name;
private String location;
private String fzr;
private String description;
private Set bookses = new HashSet(0);
private Set stores = new HashSet(0);
// Constructors
/** default constructor */
public Place() {
}
/** minimal constructor */
public Place(String name) {
this.name = name;
}
/** full constructor */
public Place(String name, String location, String fzr, String description, Set bookses, Set stores) {
this.name = name;
this.location = location;
this.fzr = fzr;
this.description = description;
this.bookses = bookses;
this.stores = stores;
}
// Property accessors
public Integer getStoreId() {
return this.storeId;
}
public void setStoreId(Integer storeId) {
this.storeId = storeId;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getLocation() {
return this.location;
}
public void setLocation(String location) {
this.location = location;
}
public String getFzr() {
return this.fzr;
}
public void setFzr(String fzr) {
this.fzr = fzr;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Set getBookses() {
return this.bookses;
}
public void setBookses(Set bookses) {
this.bookses = bookses;
}
public Set getStores() {
return this.stores;
}
public void setStores(Set stores) {
this.stores = stores;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -