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