?? speciality.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 + -