📄 roleuser.java
字号:
package com.stsc.archive.manage;
public class RoleUser
{
private int roleid = 0;
private String role = null;
private boolean value = false;
public int getRoleid()
{
return this.roleid;
}
public void setRoleid(int roleid)
{
this.roleid = roleid;
}
public String getRole()
{
return this.role;
}
public void setRole(String role)
{
this.role = (role==null)?"":role;
}
public boolean getValue()
{
return this.value;
}
public void setValue(boolean value)
{
this.value = value;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -