📄 acountgroup.java
字号:
package com.bean;
import org.apache.struts.action.ActionForm;
public class AcountGroup extends ActionForm{
private int selfId;
private int acountId;
private int groupId;
public AcountGroup(){};
public void setSelfId(int selfId){
this.selfId=selfId;
}
public int getSelfId(){
return this.selfId;
}
public void setAcountId(int acountId){
this.acountId=acountId;
}
public int getAcountId(){
return this.acountId;
}
public void setGroupId(int groupId){
this.groupId=groupId;
}
public int getGroupId(){
return this.groupId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -