xing
2023-02-23 c75e6f4696634d626c5569794c6349593853223a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package com.yssh.dao;
 
import com.yssh.entity.Yssh2dreli;
import com.yssh.entity.Yssh3dreli;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * @author lishijia
 * @ClassName Yssh2dreliMapper
 * @Description TODO
 * @date 2022/12/3 21:37
 * @Version 1.0
 */
@Mapper
public interface Yssh2dreliMapper {
 
    List<Yssh2dreli> getAll();
 
 
    /**
     * 创建2维热力表接口
     *
     * @param tableName 表名称
     */
    public int create2dreliTable(@Param("tableName") String tableName);
 
    /**
     * 删除2维热力表接口
     *
     * @param tableName 表名称
     */
    public int drop2dreliTable(@Param("tableName") String tableName);
 
    /**
     * 查询2维热力表接口
     *
     * @param tableName 表名称
     */
    public List<Yssh2dreli> query2data(@Param("time") String time, @Param("tableName") String tableName);
 
    public List<Yssh2dreli> twoDDataQuery(@Param("tableName") String tableName);
 
    public List<Yssh2dreli> twoDDataQuery1(@Param("tableName") String tableName, @Param("startTime") String startTime, @Param("endOfTime") String endOfTime);
 
    public List<Yssh2dreli> twoDDataQuery2(@Param("tableName") String tableName, @Param("startTime") String startTime);
 
    public List<Yssh2dreli> twoDDataQuery3(@Param("tableName") String tableName, @Param("endOfTime") String endOfTime);
 
}