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

📄 configauditattr.java

📁 本人课程设计时做的一个用struts框架实现的基于cmmi2的项目管理系统的原型。还有部分功能尚未实现
💻 JAVA
字号:
package com.cmmi2pms.cm.configaudit;


/** class ConfigAuditAttr.
 * it's a java bean,store the attributes of a configuration Audit.
 * @author LinRong
 * @version 1.0
*/
public class ConfigAuditAttr
{
    private int auditid;        
	private String auditdate;
	private String problemreport;
	private String approver;
	private String approvereport;
	private int problemnum;
	private int checklistitem1;
	private int checklistitem2;

    public int getauditid() 
    {
	    return (this.auditid);
    }
    
    public void setauditid(int str)
    {  
    	this.auditid = str;
    }
    
    
    public String getproblemreport() 
    {
	    return (this.problemreport);
    }
    
    public void setproblemreport(String str)
    {  
    	this.problemreport = str;
    }

    public String getapprover() 
    {
	    return (this.approver);
    }
    
    public void setapprover(String str)
    {  
    	this.approver = str;
    }

	public String getapprovereport() 
    {
	    return (this.approvereport);
    }
    
    public void setapprovereport(String str)
    {  
    	this.approvereport = str;
    }
    
    public String getauditdate() 
    {
	    return (this.auditdate);
    }
    
    public void setauditdate(String str)
    {  
    	this.auditdate = str;
    }

	public int getproblemnum() 
    {
	    return (this.problemnum);
    }
    
    public void setproblemnum(int str)
    {  
    	this.problemnum = str;
    }

	public int getchecklistitem1() 
    {
	    return (this.checklistitem1);
    }
    
    public void setchecklistitem1(int str)
    {  
    	this.checklistitem1 = str;
    }

	public int getchecklistitem2() 
    {
	    return (this.checklistitem2);
    }
    
    public void setchecklistitem2(int str)
    {  
    	this.checklistitem2 = str;
    }
}
    

⌨️ 快捷键说明

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