📄 item.java
字号:
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package com.exam.model;import java.io.Serializable;/** * * @author Administrator */public class Item implements Serializable { private int qid; private String option_a; private String option_b; private String option_c; private String option_d; private String question; private String answer; public Item(int qid, String question, String option_a, String option_b, String option_c, String option_d, String answer) { this.qid = qid; this.option_a = option_a; this.option_b = option_b; this.option_c = option_c; this.option_d = option_d; this.question = question; this.answer = answer; } public int getQid() { return qid; } public String getQuestion() { return question; } public String getAnswer() { return answer; } public String getOption_a() { return option_a; } public String getOption_b() { return option_b; } public String getOption_c() { return option_c; } public String getOption_d() { return option_d; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -