📄 biyelunwen.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -