?? achievement.java
字號:
package com.zhou.po;
/**
* Achievement entity.
*
* @author MyEclipse Persistence Tools
*/
public class Achievement implements java.io.Serializable {
// Fields
private Long id;
private Userinfo userinfo;
private Course course;
private Long studentid;
private Long results;
// Constructors
/** default constructor */
public Achievement() {
}
/** full constructor */
public Achievement(Userinfo userinfo, Course course, Long studentid,
Long results) {
this.userinfo = userinfo;
this.course = course;
this.studentid = studentid;
this.results = results;
}
// Property accessors
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public Userinfo getUserinfo() {
return this.userinfo;
}
public void setUserinfo(Userinfo userinfo) {
this.userinfo = userinfo;
}
public Course getCourse() {
return this.course;
}
public void setCourse(Course course) {
this.course = course;
}
public Long getStudentid() {
return this.studentid;
}
public void setStudentid(Long studentid) {
this.studentid = studentid;
}
public Long getResults() {
return this.results;
}
public void setResults(Long results) {
this.results = results;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -