Add File
This commit is contained in:
@@ -0,0 +1,49 @@
|
|||||||
|
package com.agentsflex.spring.boot.store.aliyun;
|
||||||
|
|
||||||
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author 王帅
|
||||||
|
* @since 2024-04-10
|
||||||
|
*/
|
||||||
|
@ConfigurationProperties(prefix = "agents-flex.store.aliyun")
|
||||||
|
public class AliyunProperties {
|
||||||
|
|
||||||
|
private String endpoint;
|
||||||
|
private String apiKey;
|
||||||
|
private String database;
|
||||||
|
private String defaultCollectionName;
|
||||||
|
|
||||||
|
public String getEndpoint() {
|
||||||
|
return endpoint;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEndpoint(String endpoint) {
|
||||||
|
this.endpoint = endpoint;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getApiKey() {
|
||||||
|
return apiKey;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setApiKey(String apiKey) {
|
||||||
|
this.apiKey = apiKey;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDatabase() {
|
||||||
|
return database;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDatabase(String database) {
|
||||||
|
this.database = database;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDefaultCollectionName() {
|
||||||
|
return defaultCollectionName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDefaultCollectionName(String defaultCollectionName) {
|
||||||
|
this.defaultCollectionName = defaultCollectionName;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user