?? rolegroup.java
字號:
package com.bean;
import org.apache.struts.action.ActionForm;
public class RoleGroup extends ActionForm{
private int groupId;
private String groupName;
private int delFlag;
public RoleGroup(){};
public void setGroupId(int groupId){
this.groupId=groupId;
}
public int getGroupId(){
return this.groupId;
}
public void setGroupName(String groupName){
this.groupName=groupName;
}
public String getGroupName(){
return this.groupName;
}
public void setDelFlag(int delFlag){
this.delFlag=delFlag;
}
public int getDelFlag(){
return this.delFlag;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -