📄 item1.java
字号:
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package com.eonline.model;/** * * @author Cui Liangcai */public class Item1 { private int qID; private String question; private String option_a; private String option_b; private String option_c; private String option_d; private String answer; public Item1(int qID, String question, String option_a, String option_b, String option_c, String option_d, String answer) { this.qID = qID; this.question = question; this.option_a = option_a; this.option_b = option_b; this.option_c = option_c; this.option_d = option_d; this.answer = answer; } public int getQID() { return qID; } public String getQuestion() { return question; } 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; } public String getAnswer() { return answer; } public void setQID(int qID) { this.qID = qID; } public void setQuestion(String question) { this.question = question; } public void setOption_a(String option_a) { this.option_a = option_a; } public void setOption_b(String option_b) { this.option_b = option_b; } public void setOption_c(String option_c) { this.option_c = option_c; } public void setOption_d(String option_d) { this.option_d = option_d; } public void setAnswer(String answer) { this.answer = answer; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -