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<Integer> getGatewayType();
| //获取通讯类别
| List<String> getCommType();
| //获取所属网关
| List<String> getGatewayName();
| }
|
|