| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | | package com.moral.api.mapper; |  |   |  |   |  | import org.apache.ibatis.annotations.Param; |  |   |  | import java.util.List; |  | import java.util.Map; |  |   |  | public interface HistoryFiveMinutelyMapper { |  |   |  |     void createTable(String timeUnits); |  |   |  |     void insertHistoryFiveMinutely(@Param("list") List<Map<String, Object>> list, @Param("timeUnits") String timeUnits); |  |   |  | } | 
 |