weburlrole.java
来自「java实现安全系统的开源代码 java实现安全系统的开源代码」· Java 代码 · 共 75 行
JAVA
75 行
package com.starit.model;
/**
* WeburlRole generated by MyEclipse - Hibernate Tools
*/
public class WeburlRole implements java.io.Serializable {
// Fields
private Integer id;
private Role role;
private Weburl weburl;
private Boolean enabled;
// Constructors
/** default constructor */
public WeburlRole() {
}
/** full constructor */
public WeburlRole(Role role,Weburl weburl,Boolean enabled) {
this.role = role;
this.weburl = weburl;
this.enabled = enabled;
}
// Property accessors
public Boolean getEnabled() {
return enabled;
}
public void setEnabled(Boolean enabled) {
this.enabled = enabled;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public Role getRole() {
return role;
}
public void setRole(Role role) {
this.role = role;
}
public Weburl getWeburl() {
return weburl;
}
public void setWeburl(Weburl weburl) {
this.weburl = weburl;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?