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

📄 module.java

📁 SSH 的分页...是新手的一个不错例子.
💻 JAVA
字号:
package com.placard.usermanage.model;

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



public class Module  implements java.io.Serializable {

     private Integer id;
     
     private String moduleName;
     
     private Set placards = new HashSet(0);

    public Module() {
    }

    
    public Module(String moduleName) {
        this.moduleName = moduleName;
    }
   
    public Integer getId() {
        return this.id;
    }
    
    public void setId(Integer id) {
        this.id = id;
    }

    public String getModuleName() {
        return this.moduleName;
    }
    
    public void setModuleName(String moduleName) {
        this.moduleName = moduleName;
    }


	public Set getPlacards() {
		return placards;
	}


	public void setPlacards(Set placards) {
		this.placards = placards;
	}
}

⌨️ 快捷键说明

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