燕山石化溯源三维电子沙盘-【后端】-服务
13693261870
2023-07-14 db44f336e46825afc855466512065cc08e5790bd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.yssh.mapper;
 
import com.yssh.entity.Qxsh;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * @author WWW
 * @date 2023-05-18
 * QxshMapper
 */
@Mapper
public interface QxshMapper {
    public List<Qxsh> selectByTime(String time);
 
    public List<Qxsh> selectMonthTop10(String time);
 
    public List<Qxsh> select3Hours(@Param("times") List<String> times);
}