?? course.java
字號(hào):
package com.zhou.po;
import java.util.HashSet;
import java.util.Set;
/**
* Course entity.
*
* @author MyEclipse Persistence Tools
*/
public class Course implements java.io.Serializable {
// Fields
private Long courseid;
private String coursename;
private Set tasks = new HashSet(0);
private Set achievements = new HashSet(0);
// Constructors
/** default constructor */
public Course() {
}
/** full constructor */
public Course(String coursename, Set tasks, Set achievements) {
this.coursename = coursename;
this.tasks = tasks;
this.achievements = achievements;
}
// Property accessors
public Long getCourseid() {
return this.courseid;
}
public void setCourseid(Long courseid) {
this.courseid = courseid;
}
public String getCoursename() {
return this.coursename;
}
public void setCoursename(String coursename) {
this.coursename = coursename;
}
public Set getTasks() {
return this.tasks;
}
public void setTasks(Set tasks) {
this.tasks = tasks;
}
public Set getAchievements() {
return this.achievements;
}
public void setAchievements(Set achievements) {
this.achievements = achievements;
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -