?? resultbean.java
字號:
package com.gton.bean;
/**
* <p>Title: </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2006</p>
*
* <p>Company: </p>
*
* @author not attributable
* @version 1.0
*/
public class ResultBean {
private int result_ID;
private int users_ID;
private String test_Phth;
private int test_Result;
private String test_Time;
public ResultBean() {
}
public void setResult_ID(int result_ID) {
this.result_ID = result_ID;
}
public void setUsers_ID(int users_ID) {
this.users_ID = users_ID;
}
public void setTest_Phth(String test_Phth) {
this.test_Phth = test_Phth;
}
public void setTest_Result(int test_Result) {
this.test_Result = test_Result;
}
public void setTest_Time(String test_Time) {
this.test_Time = test_Time;
}
public int getResult_ID() {
return result_ID;
}
public int getUsers_ID() {
return users_ID;
}
public String getTest_Phth() {
return test_Phth;
}
public int getTest_Result() {
return test_Result;
}
public String getTest_Time() {
return test_Time;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -