1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.doumee.dao.business;
|
| import com.github.yulichang.base.MPJBaseMapper;
| import com.doumee.dao.business.model.YwGateway;
|
| /**
| * 网关管理Mapper
| * @author renkang
| * @date 2026/04/02
| */
| public interface YwGatewayMapper extends MPJBaseMapper<YwGateway> {
|
| }
|
|