18586361686
2025-04-30 efcf90cf662765d83cd265aa310e9c069d71ab9e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package tech.aiflowy.system.service.impl;
 
import com.mybatisflex.spring.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
import tech.aiflowy.system.entity.SysApiKey;
import tech.aiflowy.system.mapper.SysApiKeyMapper;
import tech.aiflowy.system.service.SysApiKeyService;
 
/**
 *  服务层实现。
 *
 * @author Administrator
 * @since 2025-04-18
 */
@Service
public class SysApiKeyServiceImpl extends ServiceImpl<SysApiKeyMapper, SysApiKey>  implements SysApiKeyService {
 
}