bugbean.java
来自「BUG跟踪系统是用来对开发软件时发现的bug进行跟踪。里面包括用户管理模块」· Java 代码 · 共 147 行
JAVA
147 行
package su.bts1.bean;
import java.io.Serializable;
public class BugBean implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
private int i;
private String bugName;
private String startDate;
private String endDate;
private String text;
private int state;
private String bug_programer;
private String tester;
/**
* @return the bug_programer
*/
public String getBug_programer() {
return bug_programer;
}
/**
* @param bug_programer
* the bug_programer to set
*/
public void setBug_programer(String bug_programer) {
this.bug_programer = bug_programer;
}
/**
* @return the state
*/
public int getState() {
return state;
}
/**
* @param state
* the state to set
*/
public void setState(int state) {
this.state = state;
}
/**
* @return the tester
*/
public String getTester() {
return tester;
}
/**
* @param tester
* the tester to set
*/
public void setTester(String tester) {
this.tester = tester;
}
/**
* @return the bugName
*/
public String getBugName() {
return bugName;
}
/**
* @param bugName
* the bugName to set
*/
public void setBugName(String bugName) {
this.bugName = bugName;
}
/**
* @return the endDate
*/
public String getEndDate() {
return endDate;
}
/**
* @param endDate
* the endDate to set
*/
public void setEndDate(String endDate) {
this.endDate = endDate;
}
/**
* @return the i
*/
public int getI() {
return i;
}
/**
* @param i
* the i to set
*/
public void setI(int i) {
this.i = i;
}
/**
* @return the startDate
*/
public String getStartDate() {
return startDate;
}
/**
* @param startDate
* the startDate to set
*/
public void setStartDate(String startDate) {
this.startDate = startDate;
}
/**
* @return the text
*/
public String getText() {
return text;
}
/**
* @param text
* the text to set
*/
public void setText(String text) {
this.text = text;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?