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

📄 speciality.java

📁 一个OA系统
💻 JAVA
字号:
package com.zhou.po;

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

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

public class Speciality implements java.io.Serializable {

	// Fields

	private Long specialityid;
	private String specialityname;
	private Set students = new HashSet(0);

	// Constructors

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

	/** full constructor */
	public Speciality(String specialityname, Set students) {
		this.specialityname = specialityname;
		this.students = students;
	}

	// Property accessors

	public Long getSpecialityid() {
		return this.specialityid;
	}

	public void setSpecialityid(Long specialityid) {
		this.specialityid = specialityid;
	}

	public String getSpecialityname() {
		return this.specialityname;
	}

	public void setSpecialityname(String specialityname) {
		this.specialityname = specialityname;
	}

	public Set getStudents() {
		return this.students;
	}

	public void setStudents(Set students) {
		this.students = students;
	}

}

⌨️ 快捷键说明

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