jinpengyong
2021-05-21 f4aee40c89dd089ab8a56ee37da2906472ae7d39
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.moral.mapper;
 
import java.util.List;
import java.util.Map;
 
import org.apache.ibatis.annotations.Param;
 
public interface HistoryMinutelyMapper {
 
    int insertHistoryMinutely(@Param("list") List<Map<String, Object>> list,@Param("yearAndMonth") String yearAndMonth);
 
    List<Map<String, Object>> getMinutelySensorData(Map<String, Object> parameters);
 
    void createHistoryMinutelyTable(@Param("yearAndMonth") String yearAndMonth);
}