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

📄 report.java

📁 基于Sturts+Spring+Hibernate的一个高级销售管理系统。内容丰富
💻 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 + -