📄 authors.java
字号:
package com.mypro.hibernate.bean;
/**
* Authors entity.
*
* @author MyEclipse Persistence Tools
*/
public class Authors implements java.io.Serializable {
// Fields
private Integer id;
private String name;
private String sex;
private Integer country;
// Constructors
/** default constructor */
public Authors() {
}
/** full constructor */
public Authors(String name, String sex, Integer country) {
this.name = name;
this.sex = sex;
this.country = country;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getSex() {
return this.sex;
}
public void setSex(String sex) {
this.sex = sex;
}
public Integer getCountry() {
return this.country;
}
public void setCountry(Integer country) {
this.country = country;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -