⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 examvo.java~2~

📁 考试管理系统:实现学生信息的注册、修改、查询、删除;以及对试题进行管理:增加试题、修改试题、删除试题、查询试题
💻 JAVA~2~
字号:
package edu.sccp.examManager.VO;

/**
 * <p>Title: </p>
 *
 * <p>Description: </p>
 *
 * <p>Copyright: Copyright (c) 2006</p>
 *
 * <p>Company: </p>
 *
 * @author not attributable
 * @version 1.0
 */
public class ExamVO {
    private String testId;
    private String testName;
    private String testType;
    private String testContent;
    private String testItemA;
    private String testItemB;
    private String testItemC;
    private String testItemD;
    private String testAnswer;
    private String difficulty;
    private String testMemo;
    public ExamVO() {
    }
    public ExamVO(String id,String name,String type,String content,String A,String B,String C,String D,String ans,String diff,String memo){
        testId=id;
        testName=name;
        testType=type;
        testContent=content;
        testItemA=A;
        testItemB=B;
        testItemC=C;
        testItemD=D;
        testAnswer=ans;
        difficulty=diff;
        testMemo=memo;
    }


}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -