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

📄 module.java

📁 机房运营维护系统 java+oracle9i 使用struts 分用户权限 完成用户对机房信息的增删改查等功能
💻 JAVA
字号:
package ms.hibernate;

import java.util.HashSet;
import java.util.Set;


/**
 * Module generated by MyEclipse - Hibernate Tools
 */

public class Module  implements java.io.Serializable {


    // Fields    

     private Long moduleid;
     private String name;
     private Set popedoms = new HashSet(0);
     private Set roles = new HashSet(0);


    // Constructors

    /** default constructor */
    public Module() {
    }

	/** minimal constructor */
    public Module(Long moduleid) {
        this.moduleid = moduleid;
    }
    
    /** full constructor */
    public Module(Long moduleid, String name, Set popedoms, Set roles) {
        this.moduleid = moduleid;
        this.name = name;
        this.popedoms = popedoms;
        this.roles = roles;
    }

   
    // Property accessors

    public Long getModuleid() {
        return this.moduleid;
    }
    
    public void setModuleid(Long moduleid) {
        this.moduleid = moduleid;
    }

    public String getName() {
        return this.name;
    }
    
    public void setName(String name) {
        this.name = name;
    }

    public Set getPopedoms() {
        return this.popedoms;
    }
    
    public void setPopedoms(Set popedoms) {
        this.popedoms = popedoms;
    }

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








}

⌨️ 快捷键说明

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