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

📄 score.java

📁 在线考试 考生登陆 查分 管理员管理后台等的 的的的的达到的达到的的的
💻 JAVA
字号:
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package com.eonline.model;import java.util.Date;/** * * @author Administrator */public class Score  {    private int UID;    private java.sql.Timestamp date;    private int score;    private String answer;    private String s_answer;    /** Creates a new instance of eonline */    public Score(  int uid,java.sql.Timestamp date,int score,String answer,String s_answer){        this.UID = uid;        this.date = date;        this.score = score;        this.answer = answer;        this.s_answer = s_answer;    }    public String getAnswer() {        return answer;    }    public java.sql.Timestamp getDate() {        return date;    }    public String getS_answer() {        return s_answer;    }    public int getScore() {        return score;    }    public int getUID() {        return UID;    }    public void setAnswer(String answer) {        this.answer = answer;    }    public void setDate(java.sql.Timestamp date) {        this.date = date;    }    public void setS_answer(String s_answer) {        this.s_answer = s_answer;    }    public void setScore(int score) {        this.score = score;    }    public void setUID(int uid) {        this.UID = uid;    }}

⌨️ 快捷键说明

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