forum.java

来自「使用java开发的简易论坛」· Java 代码 · 共 67 行

JAVA
67
字号
package mokoda.entity;



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

public class Forum  implements java.io.Serializable {


    // Fields    

     private Integer id;
     private String name;
     private Integer hostid;


    // Constructors

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

    
    /** full constructor */
    public Forum(String name, Integer hostid) {
        this.name = name;
        this.hostid = hostid;
    }

   
    // Property accessors

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

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

    public Integer getHostid() {
        return this.hostid;
    }
    
    public void setHostid(Integer hostid) {
        this.hostid = hostid;
    }
   








}

⌨️ 快捷键说明

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