biyelunwen.java

来自「JSP开发的学生信息管理系统」· Java 代码 · 共 72 行

JAVA
72
字号
package biyeLunwen;

import java.io.Serializable;
import java.io.UnsupportedEncodingException;

public class BiyeLunwen implements Serializable {
    private String studentId;
    private String topical;
    private String score;
    private String remark;
    private String designTime;
    private String fjName;

    //学号
    public void setStudentId(String studentId) {
        this.studentId = studentId.trim();
    }

    public String getStudentId() {
        return studentId;
    }

    //题目
    public void setTopical(String topical) throws UnsupportedEncodingException {
        this.topical = new String(topical.getBytes("iso-8859-1"));
    }

	public void setTopical1(String topical) {
        this.topical =topical;
    }
    
    public String getTopical() {
        return topical;
    }

    //考核成绩
    public void setScore(String score) throws UnsupportedEncodingException {
        this.score = new String(score.getBytes("iso-8859-1"));
    }

    public String getScore() {
        return score;
    }

    //考核备注
    public void setRemark(String remark) throws UnsupportedEncodingException {
        this.remark = new String(remark.getBytes("iso-8859-1"));
    }

    public String getRemark() {
        return remark;
    }

    //考核时间
    public void setDesignTime(String designTime) {
        this.designTime = designTime;
    }

    public String getDesignTime() {
        return designTime;
    }

    //附件名称
    public String getFjName() {
        return fjName;
    }

    public void setFjName(String fjName) throws UnsupportedEncodingException {
        this.fjName = new String(fjName.getBytes("iso-8859-1"));
    }
}

⌨️ 快捷键说明

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