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

📄 ntype.java

📁 Java项目 新闻管理系统 jsp+struts+hibernate 开发:eclipse+oracle9i+tomcat 高质量代码 导入数据即可用
💻 JAVA
字号:
package com.xdf.news.bean;

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


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

public class Ntype  implements java.io.Serializable {


    // Fields    

     private Long typeid;
     private String typename;
     private Set newses = new HashSet(0);


    // Constructors

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

	/** minimal constructor */
    public Ntype(String typename) {
        this.typename = typename;
    }
    
    /** full constructor */
    public Ntype(String typename, Set newses) {
        this.typename = typename;
        this.newses = newses;
    }

   
    // Property accessors

    public Long getTypeid() {
        return this.typeid;
    }
    
    public void setTypeid(Long typeid) {
        this.typeid = typeid;
    }

    public String getTypename() {
        return this.typename;
    }
    
    public void setTypename(String typename) {
        this.typename = typename;
    }

    public Set getNewses() {
        return this.newses;
    }
    
    public void setNewses(Set newses) {
        this.newses = newses;
    }
   








}

⌨️ 快捷键说明

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