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

📄 bug.java

📁 为解决项目研发过程中Bug管理混乱、不科学以及中小型企业Bug管理过程中出现考核标准错误、规章制度过严等问题
💻 JAVA
字号:
package core;

public class Bug {
	
	private String ID;		// ID
	private String title;	// 标题
	private String content;	// 描述
	private String ownerID;	// 属主 ID
	private String testerID;// 测试人员 ID
	private String state;	// 状态
	
	public Bug(){}
	
	public Bug(String iTitle,String iContent,String iOwnerID,String iState,String iID)
	{
		title = iTitle;
		content = iContent;
		ownerID = iOwnerID;
		state = iState;
		ID = iID;
	}
	
	public void setId(String ID)
	{
		this.ID = ID;
	}
	
	public String getID()
	{
		return ID;
	}
	
	public void setTitle(String title)
	{
		this.title = title;
	}
	
	public String getTitle()
	{
		return title;
	}
	
	public void setContent(String content)
	{
		this.content = content;
	}
	
	public String getContent()
	{
		return content;
	}
	
	public void setOwnerID(String ownerID)
	{
		this.ownerID = ownerID;
	}
	
	public String getOwnerID()
	{
		return ownerID;
	}
	
	public void setTesterID(String testerID)
	{
		this.testerID = testerID; 
	}
	
	public String getTestID()
	{
		return testerID;
	}
	
	public void setState(String state)
	{
		this.state = state;
	}
	
	public String getState()
	{
		return state;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -