package com.xintong.visualinspection.service; import java.util.List; import java.util.Map; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import com.xintong.visualinspection.bean.StatisticsBean; import com.xintong.visualinspection.bean.StatisticsBo; /** * * * StatisticsService * * tiger * tiger * 2017年5月4日 上午10:41:40 * * @version 1.0.0 * */ public interface StatisticsService { public List getEmployeeCheckedInfo(StatisticsBean obj); public List getFeeStationCheckedScore(StatisticsBean obj); public List getFeeStationCheckItemScore(StatisticsBean obj); public void getEmployeeCheckedInfo(StatisticsBean obj,HttpServletRequest req,HttpServletResponse resp); public void getFeeStationCheckedScore(StatisticsBean obj,HttpServletRequest req,HttpServletResponse resp); public void getFeeStationCheckItemScore(StatisticsBean obj,HttpServletRequest req,HttpServletResponse resp); public List getYearScoreChange(StatisticsBean obj); public List getFeeStationScoreInfo(StatisticsBean obj); public List getCenterManageScoreInfo(StatisticsBean obj); public List getSingleFeeStationScoreInfo(StatisticsBean obj); // 考核扣分情况占比 public StatisticsBean getCheckedScoreInfo(StatisticsBean obj); // 分项考核情况占比 public List getCheckedItemScoreInfo(StatisticsBean obj); // 分项具体考核情况占比 public Map> get2CheckedItemScoreInfo(StatisticsBean obj); }