📄 actions.java
字号:
package cn.com.sdcncsi.lunch.domain;
import java.util.HashSet;
import java.util.Set;
/**
* Actions entity.
*
* @author MyEclipse Persistence Tools
*/
public class Actions implements java.io.Serializable {
// Fields
private Integer id;
private String actionName;
private Set authoritieses = new HashSet(0);
// Constructors
/** default constructor */
public Actions() {
}
/** minimal constructor */
public Actions(String actionName) {
this.actionName = actionName;
}
/** full constructor */
public Actions(String actionName, Set authoritieses) {
this.actionName = actionName;
this.authoritieses = authoritieses;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getActionName() {
return this.actionName;
}
public void setActionName(String actionName) {
this.actionName = actionName;
}
public Set getAuthoritieses() {
return this.authoritieses;
}
public void setAuthoritieses(Set authoritieses) {
this.authoritieses = authoritieses;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -