publishers.java
来自「带分页显示的简单例子 Hibernate」· Java 代码 · 共 120 行
JAVA
120 行
package fmq.model.bo;
import java.util.HashSet;
import java.util.Set;
/**
* Publishers generated by MyEclipse Persistence Tools
*/
public class Publishers implements java.io.Serializable {
// Fields
private String pubId;
private String pubName;
private String city;
private String state;
private String country;
private Set employees = new HashSet(0);
private Set pubInfos = new HashSet(0);
private Set titleses = new HashSet(0);
// Constructors
/** default constructor */
public Publishers() {
}
/** minimal constructor */
public Publishers(String pubId) {
this.pubId = pubId;
}
/** full constructor */
public Publishers(String pubId, String pubName, String city, String state,
String country, Set employees, Set pubInfos, Set titleses) {
this.pubId = pubId;
this.pubName = pubName;
this.city = city;
this.state = state;
this.country = country;
this.employees = employees;
this.pubInfos = pubInfos;
this.titleses = titleses;
}
// Property accessors
public String getPubId() {
return this.pubId;
}
public void setPubId(String pubId) {
this.pubId = pubId;
}
public String getPubName() {
return this.pubName;
}
public void setPubName(String pubName) {
this.pubName = pubName;
}
public String getCity() {
return this.city;
}
public void setCity(String city) {
this.city = city;
}
public String getState() {
return this.state;
}
public void setState(String state) {
this.state = state;
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
}
public Set getEmployees() {
return this.employees;
}
public void setEmployees(Set employees) {
this.employees = employees;
}
public Set getPubInfos() {
return this.pubInfos;
}
public void setPubInfos(Set pubInfos) {
this.pubInfos = pubInfos;
}
public Set getTitleses() {
return this.titleses;
}
public void setTitleses(Set titleses) {
this.titleses = titleses;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?