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

📄 category.java

📁 不说了
💻 JAVA
字号:
package com.david.bo;

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

/**
 * Category generated by MyEclipse Persistence Tools
 */

public class Category implements java.io.Serializable {

	// Fields

	private Integer id;

	private Userinfo userinfo;

	private String categoryName;

	private String categoryIntro;

	private Date addTime;

	private Set files = new HashSet(0);

	// Constructors

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

	/** minimal constructor */
	public Category(Userinfo userinfo) {
		this.userinfo = userinfo;
	}

	/** full constructor */
	public Category(Userinfo userinfo, String categoryName,
			String categoryIntro, Date addTime, Set files) {
		this.userinfo = userinfo;
		this.categoryName = categoryName;
		this.categoryIntro = categoryIntro;
		this.addTime = addTime;
		this.files = files;
	}

	// Property accessors

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

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

	public Userinfo getUserinfo() {
		return this.userinfo;
	}

	public void setUserinfo(Userinfo userinfo) {
		this.userinfo = userinfo;
	}

	public String getCategoryName() {
		return this.categoryName;
	}

	public void setCategoryName(String categoryName) {
		this.categoryName = categoryName;
	}

	public String getCategoryIntro() {
		return this.categoryIntro;
	}

	public void setCategoryIntro(String categoryIntro) {
		this.categoryIntro = categoryIntro;
	}

	public Date getAddTime() {
		return this.addTime;
	}

	public void setAddTime(Date addTime) {
		this.addTime = addTime;
	}

	public Set getFiles() {
		return this.files;
	}

	public void setFiles(Set files) {
		this.files = files;
	}

}

⌨️ 快捷键说明

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