src/main/java/com/whyc/mapper/GatewayInfMapper.java
@@ -1,14 +1,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<Integer> getGatewayType(); List<String> getGatewayType(); //获取通讯类别 List<String> getCommType(); //获取所属网关 List<String> getGatewayName(); //查询库中最大的网关 Integer getMaxGatewayId(); //删除之前判断是否被占用 BreakerInf judgeBreaker(int num); }