📄 configauditattr.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 + -