?? 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 + -