📄 subject.java
字号:
package com.study.vo;
public class Subject {
// 题目ID
private int subjectid;
// 题目问题
private String subjectquestion;
// 题目答案
private String subjectanswer;
// 题目类型
private int subjecttype;
/**
* @return the subjecttype
*/
public int getSubjecttype() {
return subjecttype;
}
/**
* @param subjecttype the subjecttype to set
*/
public void setSubjecttype(int subjecttype) {
this.subjecttype = subjecttype;
}
public Subject(){
subjectid = 0;
}
/**
* @return the subjectanswer
*/
public String getSubjectanswer() {
return subjectanswer;
}
/**
* @param subjectanswer the subjectanswer to set
*/
public void setSubjectanswer(String subjectanswer) {
this.subjectanswer = subjectanswer;
}
/**
* @return the subjectid
*/
public int getSubjectid() {
return subjectid;
}
/**
* @param subjectid the subjectid to set
*/
public void setSubjectid(int subjectid) {
this.subjectid = subjectid;
}
/**
* @return the subjectquestion
*/
public String getSubjectquestion() {
return subjectquestion;
}
/**
* @param subjectquestion the subjectquestion to set
*/
public void setSubjectquestion(String subjectquestion) {
this.subjectquestion = subjectquestion;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -