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 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 query2data(@Param("time") String time, @Param("tableName") String tableName); public List twoDDataQuery(@Param("tableName") String tableName); public List twoDDataQuery1(@Param("tableName") String tableName, @Param("startTime") String startTime, @Param("endOfTime") String endOfTime); public List twoDDataQuery2(@Param("tableName") String tableName, @Param("startTime") String startTime); public List twoDDataQuery3(@Param("tableName") String tableName, @Param("endOfTime") String endOfTime); }