item1.java
来自「在线考试 考生登陆 查分 管理员管理后台等的 的的的的达到的达到的的的」· Java 代码 · 共 90 行
JAVA
90 行
/* * 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 + =
减小字号Ctrl + -
显示快捷键?