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

📄 topic.java

📁 我们采用了JSP技术为主要手段,本系统采用了多级角色管理:包括系统管理员、系主任
💻 JAVA
字号:
package com.middle.graduate.biz.entity;

public class Topic {
	private Integer topicId;
	private String topicName;
	private String topicContent;
	private String topicProperty;
	private int topicState;//1表示已被选,0表示未被选
	private Teacher teacher;
	private Student student;
	public Topic() {
		super();
	}
	public Topic(String topicName, String topicContent, String topicProperty, int topicState) {
		super();
		this.topicName = topicName;
		this.topicContent = topicContent;
		this.topicProperty = topicProperty;
		this.topicState = topicState;
	}
	public String getTopicContent() {
		return topicContent;
	}
	public void setTopicContent(String topicContent) {
		this.topicContent = topicContent;
	}
	public Integer getTopicId() {
		return topicId;
	}
	public void setTopicId(Integer topicId) {
		this.topicId = topicId;
	}
	public String getTopicName() {
		return topicName;
	}
	public void setTopicName(String topicName) {
		this.topicName = topicName;
	}
	public String getTopicProperty() {
		return topicProperty;
	}
	public void setTopicProperty(String topicProperty) {
		this.topicProperty = topicProperty;
	}
	public int getTopicState() {
		return topicState;
	}
	public void setTopicState(int topicState) {
		this.topicState = topicState;
	}
	public Teacher getTeacher() {
		return teacher;
	}
	public void setTeacher(Teacher teacher) {
		this.teacher = teacher;
	}
	public Student getStudent() {
		return student;
	}
	public void setStudent(Student student) {
		this.student = student;
	}
}

⌨️ 快捷键说明

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