📄 authors.java
字号:
package fmq.model.bo;
import java.util.HashSet;
import java.util.Set;
/**
* Authors generated by MyEclipse Persistence Tools
*/
public class Authors implements java.io.Serializable {
// Fields
private String auId;
private String auLname;
private String auFname;
private String phone;
private String address;
private String city;
private String state;
private String zip;
private Byte contract;
private Set titleauthors = new HashSet(0);
// Constructors
/** default constructor */
public Authors() {
}
/** minimal constructor */
public Authors(String auId, String auLname, String auFname, String phone,
Byte contract) {
this.auId = auId;
this.auLname = auLname;
this.auFname = auFname;
this.phone = phone;
this.contract = contract;
}
/** full constructor */
public Authors(String auId, String auLname, String auFname, String phone,
String address, String city, String state, String zip,
Byte contract, Set titleauthors) {
this.auId = auId;
this.auLname = auLname;
this.auFname = auFname;
this.phone = phone;
this.address = address;
this.city = city;
this.state = state;
this.zip = zip;
this.contract = contract;
this.titleauthors = titleauthors;
}
// Property accessors
public String getAuId() {
return this.auId;
}
public void setAuId(String auId) {
this.auId = auId;
}
public String getAuLname() {
return this.auLname;
}
public void setAuLname(String auLname) {
this.auLname = auLname;
}
public String getAuFname() {
return this.auFname;
}
public void setAuFname(String auFname) {
this.auFname = auFname;
}
public String getPhone() {
return this.phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getAddress() {
return this.address;
}
public void setAddress(String address) {
this.address = address;
}
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 getZip() {
return this.zip;
}
public void setZip(String zip) {
this.zip = zip;
}
public Byte getContract() {
return this.contract;
}
public void setContract(Byte contract) {
this.contract = contract;
}
public Set getTitleauthors() {
return this.titleauthors;
}
public void setTitleauthors(Set titleauthors) {
this.titleauthors = titleauthors;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -