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{
|
|
}
|