package com.moral.service; import java.util.List; import java.util.Map; public interface HistoryDailyService { List> getEmissionsData(Map parameters) throws Exception; Map getOverproofData(Map parameters) throws Exception; Map getTraceabilityData(Map parameters) throws Exception; List> getDataByTimeSlot(String mac, String startTime, String endTime) throws Exception; }