abstractexamroom.java
来自「实现中小学生校园管理里」· Java 代码 · 共 58 行
JAVA
58 行
package com.dcs.hibernate;
/**
* AbstractExamRoom generated by MyEclipse - Hibernate Tools
*/
public abstract class AbstractExamRoom implements java.io.Serializable {
// Fields
private ExamRoomId id;
private String examroomType;
// Constructors
/** default constructor */
public AbstractExamRoom() {
}
/** full constructor */
public AbstractExamRoom(ExamRoomId id, String examroomType) {
this.id = id;
this.examroomType = examroomType;
}
// Property accessors
public ExamRoomId getId() {
return this.id;
}
public void setId(ExamRoomId id) {
this.id = id;
}
public String getExamroomType() {
return this.examroomType;
}
public void setExamroomType(String examroomType) {
this.examroomType = examroomType;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?