📄 report.java
字号:
package com.yuanchung.sales.model.report;
/**
* 报表
* @author gzq
*
*/
public class Report implements java.io.Serializable {
private Integer id;
private ReportCategory reportCategory;
private String name;
private Integer defaultCondition;
public Report() {
}
public Report(String name) {
this.name = name;
}
public Report(ReportCategory reportCategory, String name, Integer defaultCondition) {
this.reportCategory = reportCategory;
this.name = name;
this.defaultCondition = defaultCondition;
}
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public ReportCategory getReportCategory() {
return this.reportCategory;
}
public void setReportCategory(ReportCategory reportCategory) {
this.reportCategory = reportCategory;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public Integer getDefaultCondition() {
return this.defaultCondition;
}
public void setDefaultCondition(Integer defaultCondition) {
this.defaultCondition = defaultCondition;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -