testmanform.java

来自「培训考试系统代码」· Java 代码 · 共 143 行

JAVA
143
字号
package com.huawei.icd30.agt.testman;

import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.upload.FormFile;

/**
 * <p> 统一存放试题管理模块页面所提交的数据信息的Form类。</p>
 * <p> </p>
 * <p> </p>
 * @author 龙燕茜
 * @version 1.0
 */

public class TestManForm extends ActionForm
{
    //操作类型
    private String opeType;
    //试题ID号
    private String testId;
    //多个试题ID号
    private String[] testIds;
    //试题内容
    private String content;
    //简要说明
    private String explain;
    //类别编号
    private String classId;
    //试题题型
    private int testType;
    //试题难度
    private int degree;
    //测试手段
    private int testMeans;
    //使用级别
    private int useLevel;
    //使用频率
    private int useFrequency;

    public String getOpeType()
    {
         return this.opeType;
    }
    public void setOpeType(String opeType)
    {
        this.opeType = opeType;
    }

    public String getTestId()
    {
         return this.testId;
    }
    public void setTestId(String testId)
    {
        this.testId = testId;
    }

    public String[] getTestIds()
    {
        return this.testIds;
    }
    public void setTestIds(String[] testIds)
    {
        this.testIds = testIds;
    }

    public String getContent()
    {
         return this.content;
    }
    public void setContent(String content)
    {
        this.content = content;
    }

    public String getExplain()
    {
         return this.explain;
    }
    public void setExplain(String explain)
    {
        this.explain = explain;
    }

    public String getClassId()
    {
         return this.classId;
    }
    public void setClassId(String classId)
    {
        this.classId = classId;
    }

    public int getTestType()
    {
         return this.testType;
    }
    public void setTestType(int testType)
    {
        this.testType = testType;
    }

    public int getDegree()
    {
         return this.degree;
    }
    public void setDegree(int degree)
    {
        this.degree = degree;
    }

    public int getTestMeans()
    {
         return this.testMeans;
    }
    public void setTestMeans(int testMeans)
    {
        this.testMeans = testMeans;
    }

    public int getUseLevel()
    {
         return this.useLevel;
    }
    public void setUseLevel(int useLevel)
    {
        this.useLevel = useLevel;
    }

    public int getUseFrequency()
    {
         return this.useFrequency;
    }
    public void setUseFrequency(int useFrequency)
    {
        this.useFrequency = useFrequency;
    }

    public void reset(ActionMapping mapping, HttpServletRequest request)
    {
    }
}

⌨️ 快捷键说明

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