lxw
2023-12-12 14fa644167bcadd3f7bd6feddf29dc18c1490068
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.whyc.mapper;
 
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();
}