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

📄 reportmgr.java

📁 基于Sturts+Spring+Hibernate的一个高级销售管理系统。内容丰富
💻 JAVA
字号:
package com.yuanchung.sales.service.resport;

import java.util.List;

import com.yuanchung.sales.model.report.Report;
import com.yuanchung.sales.model.report.ReportCategory;
/**
 * 报表的业务层接口
 * @author gzq
 *
 */
public interface ReportMgr {
	/**
	 * 获得报表类别
	 * @return
	 */
	public List<ReportCategory> getReportCategory();
	/**
	 * 根据ID获得报表类别
	 * @param id   报表类别的ID
	 * @return
	 */
	public ReportCategory findReportCategoryById(Integer id);
	/**
	 * 获得报表类别包含的报表
	 * @param id  报表类别ID
	 * @return
	 */
	public List<Report> findReportByReportCategoryId(Integer id);
	/**
	 * 根据时间范围获得新增客户
	 * @param startDate  开始日期
	 * @param endDate    结束日期
	 * @return List(){familyName,customerName,inDate}
	 */
	public List getNewCreatedCustomer(String startDate,String endDate);
	/**
	 * 根据时间范围获得新增客户数
	 * @param startDate  开始日期
	 * @param endDate    结束日期
	 * @return List(){month,customerCount}
	 */
	public List getNewCreatedCustomerCount(String startDate,String endDate);
	/**
	 * 根据时间范围获得已忽视的客户数
	 * @param startDate  开始日期
	 * @param endDate    结束日期
	 * @return List(){month,customerCount}
	 */
	public List getIgnoredCustomerCount(String startDate,String endDate);
	/**
	 * 根据时间范围获得最近联系的客户数
	 * @param startDate  开始日期
	 * @param endDate    结束日期
	 * @return List(){month,customerCount}
	 */
	public List getRecentlyContactCustomerCount(String startDate,String endDate);
}

⌨️ 快捷键说明

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