?? stuscore.java
字號(hào):
package com.accp.entity;
/**
* Stuscore entity.
*
* @author MyEclipse Persistence Tools
*/
public class Stuscore implements java.io.Serializable {
// Fields
private Long id;
private Stuinfo stuinfo;
private String course;
private Long score;
// Constructors
/** default constructor */
public Stuscore() {
}
/** minimal constructor */
public Stuscore(Long id, Stuinfo stuinfo) {
this.id = id;
this.stuinfo = stuinfo;
}
/** full constructor */
public Stuscore(Long id, Stuinfo stuinfo, String course, Long score) {
this.id = id;
this.stuinfo = stuinfo;
this.course = course;
this.score = score;
}
// Property accessors
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public Stuinfo getStuinfo() {
return this.stuinfo;
}
public void setStuinfo(Stuinfo stuinfo) {
this.stuinfo = stuinfo;
}
public String getCourse() {
return this.course;
}
public void setCourse(String course) {
this.course = course;
}
public Long getScore() {
return this.score;
}
public void setScore(Long score) {
this.score = score;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -