⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bugbean.java

📁 BUG跟踪系统是用来对开发软件时发现的bug进行跟踪。里面包括用户管理模块
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -