package com.moral.service; import java.util.List; import java.util.Map; public interface HistoryFiveMinutelyService { List> getFiveMinutesSensorData(Map map); int insertHistoryFiveMinutely(List> list, String yearAndMonth); void createHistoryFiveMinutelyTable(String yearAndMonth); }