?? roleinfovo.java
字號(hào):
/**
*
*/
package cn.bway.admin.vo;
import cn.bway.common.vo.BaseVO;
import cn.bway.common.vo.PageListVO;
/**
* @author Kson
*
*/
public class RoleInfoVO extends BaseVO {
private String roleId;
private String roleName;
private String description;
private String delEnable;
public void setRoleId(String roleId)
{
this.roleId = roleId;
}
public void setRoleName(String roleName)
{
this.roleName = roleName;
}
public void setDescription(String description)
{
this.description = description;
}
public void setDelEnable(String delEnable)
{
this.delEnable = delEnable;
}
public String getRoleId()
{
return roleId;
}
public String getRoleName()
{
return roleName;
}
public String getDescription()
{
return description;
}
public String getDelEnable()
{
return delEnable;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -