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

📄 newstype.java

📁 struts hibernate spring实现新闻发布系统含说明文档
💻 JAVA
字号:
package com.ata.wx.java01b.dao;

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

/**
 * Newstype generated by MyEclipse Persistence Tools
 */

public class Newstype implements java.io.Serializable {

	// Fields

	private String newstypeid;
	private String newstype;
	private Set<News> newses = new HashSet(0);

	// Constructors

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

	/** minimal constructor */
	public Newstype(String newstype) {
		this.newstype = newstype;
	}

	/** full constructor */
	public Newstype(String newstype, Set<News> newses) {
		this.newstype = newstype;
		this.newses = newses;
	}

	// Property accessors

	public String getNewstypeid() {
		return this.newstypeid;
	}

	public void setNewstypeid(String newstypeid) {
		this.newstypeid = newstypeid;
	}

	public String getNewstype() {
		return this.newstype;
	}

	public void setNewstype(String newstype) {
		this.newstype = newstype;
	}

	public Set<News> getNewses() {
		return this.newses;
	}

	public void setNewses(Set<News> newses) {
		this.newses = newses;
	}

}

⌨️ 快捷键说明

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