?? reportcategory.java
字號:
package com.yuanchung.sales.model.report;
import java.util.HashSet;
import java.util.Set;
/**
* 報表類別
* @author gzq
*
*/
public class ReportCategory implements java.io.Serializable {
private Integer id;
private ReportCategory parent;
private String name;
private Set reports = new HashSet(0);
private Set children = new HashSet(0);
public ReportCategory() {
}
public ReportCategory(ReportCategory parent, String name, Set reports,
Set children) {
this.parent = parent;
this.name = name;
this.reports = reports;
this.children = children;
}
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public Set getReports() {
return this.reports;
}
public void setReports(Set reports) {
this.reports = reports;
}
public ReportCategory getParent() {
return parent;
}
public void setParent(ReportCategory parent) {
this.parent = parent;
}
public Set getChildren() {
return children;
}
public void setChildren(Set children) {
this.children = children;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -