📄 abstractsrole.java
字号:
package com.support.hibernate.table;
/**
* AbstractSRole generated by MyEclipse Persistence Tools
*/
public abstract class AbstractSRole implements java.io.Serializable {
// Fields
private String id;
private String name;
private String description;
private String departmentId;
// Constructors
/** default constructor */
public AbstractSRole() {
}
/** full constructor */
public AbstractSRole(String name, String description, String departmentId) {
this.name = name;
this.description = description;
this.departmentId = departmentId;
}
// Property accessors
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getDepartmentId() {
return this.departmentId;
}
public void setDepartmentId(String departmentId) {
this.departmentId = departmentId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -