📄 study.java
字号:
package com.hibernate.bean;
/**
* Study generated by MyEclipse - Hibernate Tools
*/
public class Study implements java.io.Serializable {
// Fields
private StudyId id;
private Long grade;
// Constructors
/** default constructor */
public Study() {
}
/** minimal constructor */
public Study(StudyId id) {
this.id = id;
}
/** full constructor */
public Study(StudyId id, Long grade) {
this.id = id;
this.grade = grade;
}
// Property accessors
public StudyId getId() {
return this.id;
}
public void setId(StudyId id) {
this.id = id;
}
public Long getGrade() {
return this.grade;
}
public void setGrade(Long grade) {
this.grade = grade;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -