testsbean.java
来自「这个是jsp和servlet开发的在线考试系统」· Java 代码 · 共 34 行
JAVA
34 行
package com.gton.bean;
public class TestsBean {
private int tests_ID;
private String tests_Time;
private String tests_Path;
public TestsBean() {
}
public void setTests_ID(int tests_ID) {
this.tests_ID = tests_ID;
}
public void setTests_Time(String tests_Time) {
this.tests_Time = tests_Time;
}
public void setTests_Path(String tests_Path) {
this.tests_Path = tests_Path;
}
public int getTests_ID() {
return tests_ID;
}
public String getTests_Time() {
return tests_Time;
}
public String getTests_Path() {
return tests_Path;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?