onlineaskupdateform.java
来自「数学网」· Java 代码 · 共 56 行
JAVA
56 行
package math.onlineask.controller;
import org.apache.struts.action.ActionForm;
public class OnlineAskUpdateForm extends ActionForm{
private int type;
private int award;
private int vip;
private int answer;
private int difficulty;
private String question;
private int id;
public int getAnswer() {
return answer;
}
public void setAnswer(int answer) {
this.answer = answer;
}
public int getAward() {
return award;
}
public void setAward(int award) {
this.award = award;
}
public int getDifficulty() {
return difficulty;
}
public void setDifficulty(int difficulty) {
this.difficulty = difficulty;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getQuestion() {
return question;
}
public void setQuestion(String question) {
this.question = question;
}
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
public int getVip() {
return vip;
}
public void setVip(int vip) {
this.vip = vip;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?