燕山石化项目数据提取服务
xing
2023-02-24 08c8552eb977f27304a4785e5a671905463d83c1
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
53
54
55
56
57
58
59
60
61
62
package com.terra.bigdata.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.terra.bigdata.domain.Yssh2dreli;
import com.terra.bigdata.domain.Yssh3dreli;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
 
/**
 * <p>
 * 前端控制器
 * </p>
 *
 * @author hyy
 * @since 2022-12-22
 */
@Mapper
public interface Yssh3dreliMapper extends BaseMapper<Yssh3dreli> {
 
    /**
     * 创建3维热力表接口
     *
     * @param tableName 表名称
     */
    public int create3dreliTable(@Param("tableName") String tableName);
    public int create2dreliTable(@Param("tableName") String tableName);
 
    /**
     * 新增3维热力表记录
     *
     * @param yssh3dreli 3维热力表记录
     * @return 结果
     */
    public int insert3dreliData(@Param("tableName") String tableName, Yssh3dreli yssh3dreli);
 
    /**
     * 批量新增3维热力记录
     *
     * @param yssh3dreli 3维热力记录
     * @return 结果
     */
    public int batchInsert3dreliData(@Param("tableName") String tableName, @Param("list") List<Yssh3dreli> yssh3dreli);
 
    /**
     * 批量新增2维热力记录
     *
     * @param yssh2drelis 2维热力记录
     * @return 结果
     */
    public int batchInsert2dreliData(@Param("tableName") String tableName, @Param("list") List<Yssh2dreli> yssh2drelis);
 
    /**
     * 删除3维热力表接口
     *
     * @param tableName 表名称
     */
    public int drop3dreliTable(@Param("tableName") String tableName);
 
}