📄 engageexamdetails.java
字号:
package com.accphr.entity;
/**
* EngageExamDetails entity.
*
* @author MyEclipse Persistence Tools
*/
public class EngageExamDetails implements java.io.Serializable {
/* 创建新表 "engage_exam_details"。 */
/* "engage_exam_details" : 试卷详细信息 */
/* "exd_id" : 主键,自动增长列 */
/* "exam_number" : 试卷编号 */
/* "first_kind_id" : 试题一级分类编号 */
/* "first_kind_name" : 试题一级分类名称 */
/* "second_kind_id" : 试题二级分类编号 */
/* "second_kind_name" : 试题二级分类名称 */
/* "question_amount" : 出题数量 */
private Short exdId;
private String examNumber;
private String firstKindId;
private String firstKindName;
private String secondKindId;
private String secondKindName;
private Short questionAmount;
// Constructors
/** default constructor */
public EngageExamDetails() {
}
/** full constructor */
public EngageExamDetails(String examNumber, String firstKindId,
String firstKindName, String secondKindId, String secondKindName,
Short questionAmount) {
this.examNumber = examNumber;
this.firstKindId = firstKindId;
this.firstKindName = firstKindName;
this.secondKindId = secondKindId;
this.secondKindName = secondKindName;
this.questionAmount = questionAmount;
}
// Property accessors
public Short getExdId() {
return this.exdId;
}
public void setExdId(Short exdId) {
this.exdId = exdId;
}
public String getExamNumber() {
return this.examNumber;
}
public void setExamNumber(String examNumber) {
this.examNumber = examNumber;
}
public String getFirstKindId() {
return this.firstKindId;
}
public void setFirstKindId(String firstKindId) {
this.firstKindId = firstKindId;
}
public String getFirstKindName() {
return this.firstKindName;
}
public void setFirstKindName(String firstKindName) {
this.firstKindName = firstKindName;
}
public String getSecondKindId() {
return this.secondKindId;
}
public void setSecondKindId(String secondKindId) {
this.secondKindId = secondKindId;
}
public String getSecondKindName() {
return this.secondKindName;
}
public void setSecondKindName(String secondKindName) {
this.secondKindName = secondKindName;
}
public Short getQuestionAmount() {
return this.questionAmount;
}
public void setQuestionAmount(Short questionAmount) {
this.questionAmount = questionAmount;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -