module.java

来自「SSH 的分页...是新手的一个不错例子.」· Java 代码 · 共 49 行

JAVA
49
字号
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 + =
减小字号Ctrl + -
显示快捷键?