| 123456789101112131415 |
- package com.ruoyi.data.mapper;
- import com.ruoyi.data.domain.TblGateway;
- import com.ruoyi.data.domain.vo.TblGatewayVo;
- import com.ruoyi.common.core.mapper.BaseMapperPlus;
- /**
- * 网关管理Mapper接口
- *
- * @author ruoyi
- * @date 2023-11-28
- */
- public interface TblGatewayMapper extends BaseMapperPlus<TblGatewayMapper, TblGateway, TblGatewayVo> {
- }
|