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

📄 messages.java

📁 教务管理系统
💻 JAVA
字号:
package com.zbaccp.ea.entity;

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

/**
 * Messages entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public class Messages implements java.io.Serializable {

	// Fields

	private String id;
	private Employees employees;
	private String title;
	private String content;
	private String state;
	private Set messagetouserses = new HashSet(0);

	// Constructors

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

	/** minimal constructor */
	public Messages(String id, Employees employees, String title,
			String content, String state) {
		this.id = id;
		this.employees = employees;
		this.title = title;
		this.content = content;
		this.state = state;
	}

	/** full constructor */
	public Messages(String id, Employees employees, String title,
			String content, String state, Set messagetouserses) {
		this.id = id;
		this.employees = employees;
		this.title = title;
		this.content = content;
		this.state = state;
		this.messagetouserses = messagetouserses;
	}

	// Property accessors

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

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

	public Employees getEmployees() {
		return this.employees;
	}

	public void setEmployees(Employees employees) {
		this.employees = employees;
	}

	public String getTitle() {
		return this.title;
	}

	public void setTitle(String title) {
		this.title = title;
	}

	public String getContent() {
		return this.content;
	}

	public void setContent(String content) {
		this.content = content;
	}

	public String getState() {
		return this.state;
	}

	public void setState(String state) {
		this.state = state;
	}

	public Set getMessagetouserses() {
		return this.messagetouserses;
	}

	public void setMessagetouserses(Set messagetouserses) {
		this.messagetouserses = messagetouserses;
	}

}

⌨️ 快捷键说明

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