1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package tech.aiflowy.system.service;
|
| import com.mybatisflex.core.service.IService;
| import tech.aiflowy.system.entity.SysApiKey;
|
| /**
| * 服务层。
| *
| * @author Administrator
| * @since 2025-04-18
| */
| public interface SysApiKeyService extends IService<SysApiKey> {
|
| }
|
|