📄 questiontypevo.java
字号:
package edu.yinhe.mis.vo;
/**
*
* @author 石小军
* @since 2008-04-30
*
*/
public class QuestionTypeVO {
/**
*试题类型编号
*/
private Integer questionTypeID;
/**
*试题类型名称
*/
private String questionTypeName;
public Integer getQuestionTypeID() {
return questionTypeID;
}
public void setQuestionTypeID(Integer questionTypeID) {
this.questionTypeID = questionTypeID;
}
public String getQuestionTypeName() {
return questionTypeName;
}
public void setQuestionTypeName(String questionTypeName) {
this.questionTypeName = questionTypeName;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -