place.java
来自「实现图书的借阅和管理信息化」· Java 代码 · 共 113 行
JAVA
113 行
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 + =
减小字号Ctrl + -
显示快捷键?