refactor: 重命名 backend-single 目录为 server
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user