1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| 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();
| //查询库中最大的网关
| Integer getMaxGatewayId();
| }
|
|