whyclxw
2024-07-01 0ce771b4a4ff5897dc91bb1b84a4561781b00ca5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.whyc.mapper;
 
import com.whyc.pojo.db_ckpwrdev_inf.BreakerInf;
import com.whyc.pojo.db_ckpwrdev_inf.GatewayInf;
 
import java.util.List;
 
public interface GatewayInfMapper extends CustomMapper<GatewayInf>{
    //获取网关类别
    List<String> getGatewayType();
    //获取通讯类别
    List<String> getCommType();
    //获取所属网关
    List<String> getGatewayName();
    //查询库中最大的网关
    Integer getMaxGatewayId();
    //删除之前判断是否被占用
    BreakerInf judgeBreaker(int num);
}