18 lines
459 B
Java
18 lines
459 B
Java
package com.emotion.service;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.emotion.entity.AiEndpointConfig;
|
|
|
|
import java.util.List;
|
|
|
|
public interface AiEndpointConfigService extends IService<AiEndpointConfig> {
|
|
|
|
List<AiEndpointConfig> listVisible();
|
|
|
|
AiEndpointConfig saveEndpoint(AiEndpointConfig endpoint);
|
|
|
|
AiEndpointConfig updateEndpoint(AiEndpointConfig endpoint);
|
|
|
|
AiEndpointConfig getEnabledById(String id);
|
|
}
|