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

📄 usergroup.java

📁 一个jsp写的bbs
💻 JAVA
字号:
package com.laoer.bbscs.bean;

import java.util.*;
import java.io.Serializable;

/**
 * <p>Title: Tianyi BBS</p>
 *
 * <p>Description: BBSCS</p>
 *
 * <p>Copyright: Copyright (c) 2006</p>
 *
 * <p>Company: Laoer.com</p>
 *
 * @author Gong Tianyi
 * @version 7.0
 */
public class UserGroup
    implements Serializable {

  private Integer id;
  private String groupName;
  private String groupDesc;
  private int typeID;
  private Set roles = new HashSet();

  public UserGroup() {
  }

  public void setId(Integer id) {

    this.id = id;
  }

  public Integer getId() {

    return id;
  }

  public void setGroupName(String groupName) {
    this.groupName = groupName;
  }

  public void setGroupDesc(String groupDesc) {
    this.groupDesc = groupDesc;
  }

  public void setTypeID(int typeID) {
    this.typeID = typeID;
  }

  public void setRoles(Set roles) {
    this.roles = roles;
  }

  public String getGroupName() {
    return groupName;
  }

  public String getGroupDesc() {
    return groupDesc;
  }

  public int getTypeID() {
    return typeID;
  }

  public Set getRoles() {
    return roles;
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -