study.java
来自「使用hibernate」· Java 代码 · 共 62 行
JAVA
62 行
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 + =
减小字号Ctrl + -
显示快捷键?