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);
|
|
}
|