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

📄 auditingdto.java

📁 中应用程序的访问权限对Java Web Console 中应用程序的访问权限 成功登录 Web 控制台后,可能无法自动访问在该控制台中注册的所有应用程序。通常,必须安装应用程序,才能让所有的用户在控制
💻 JAVA
字号:
package edu.yinhe.mis.dto;

import java.util.List;
/**
 * 
 * @author 陈雄
 *
 */
public class AuditingDTO {
	/**
	 * 考试科目的名字
	 */
	private String object_name;
	/**
	 * 考场编号
	 */
	private Integer check_id;
	/**
	 * 考生编号
	 */
	private Integer exam_no;
	/**
	 * 考生姓名
	 */
	private String name;
	/**
	 * 考生试卷的状态(已评1,未评0)
	 */
	private Integer fetle;
	/**
	 * 每页多少行
	 */
	private String rowPerPage;
	/**
	 * 当前也
	 */
	private String currentPage;
	/**
	 * 老师所评的分
	 */
	private String fact_socre;
	/**
	 * 试题的编号
	 */
	private Integer testpaperquestion_id;
	/**
	 * 页面上考生的编号
	 */
	private String keyword;
	/**
	 * 页面上考生的姓名
	 */
	private String keyword2;
	/**
	 * 题号、分数 组成的字符串
	 */
	private String scorearry;
	/**
	 * List 封装器
	 */
	private List list=null;
	
	public String getObject_name() {
		return object_name;
	}

	public void setObject_name(String object_name) {
		this.object_name = object_name;
	}

	public String getRowPerPage() {
		return rowPerPage;
	}

	public void setRowPerPage(String rowPerPage) {
		this.rowPerPage = rowPerPage;
	}

	public String getCurrentPage() {
		return currentPage;
	}

	public void setCurrentPage(String currentPage) {
		this.currentPage = currentPage;
	}

	public Integer getExam_no() {
		return exam_no;
	}

	public void setExam_no(Integer exam_no) {
		this.exam_no = exam_no;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public Integer getCheck_id() {
		return check_id;
	}

	public void setCheck_id(Integer check_id) {
		this.check_id = check_id;
	}

	public Integer getFetle() {
		return fetle;
	}

	public void setFetle(Integer fetle) {
		this.fetle = fetle;
	}

	public String getFact_socre() {
		return fact_socre;
	}

	public void setFact_socre(String fact_socre) {
		this.fact_socre = fact_socre;
	}

	public Integer getTestpaperquestion_id() {
		return testpaperquestion_id;
	}

	public void setTestpaperquestion_id(Integer testpaperquestion_id) {
		this.testpaperquestion_id = testpaperquestion_id;
	}

	public String getKeyword() {
		return keyword;
	}

	public void setKeyword(String keyword) {
		this.keyword = keyword;
	}

	public String getKeyword2() {
		return keyword2;
	}

	public void setKeyword2(String keyword2) {
		this.keyword2 = keyword2;
	}

	public String getScorearry() {
		return scorearry;
	}

	public void setScorearry(String scorearry) {
		this.scorearry = scorearry;
	}

	public List getList() {
		return list;
	}

	public void setList(List list) {
		this.list = list;
	} 
    
}

⌨️ 快捷键说明

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