⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rolegroup.java

📁 hibernate应用测试,初学hibernate 的会员可以看看.
💻 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 + -