jinpengyong
2023-07-12 5ebd05f0bbb5509dba3a7d5c576307b7b19adf78
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.moral.api.mapper;
 
import java.util.List;
import java.util.Map;
 
import com.moral.api.entity.HistoryFiveMinutely;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.moral.api.pojo.dto.Wind.WindData;
 
/**
 * <p>
 * 5分钟数据表 Mapper 接口
 * </p>
 *
 * @author moral
 * @since 2021-07-15
 */
public interface HistoryFiveMinutelyMapper extends BaseMapper<HistoryFiveMinutely> {
 
    List<WindData> getAreaWindData(Map<String, Object> params);
 
}