630 Star 7.5K Fork 1.8K

GVPdromara/liteFlow

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
DashScopeWorkflowProperty.java 669 Bytes
一键复制 编辑 原始数据 按行查看 历史
苍镜月 提交于 2025-09-26 08:18 +08:00 . 确定发布版本号 since -> 2.16.0
package com.yomahub.liteflow.ai.workflow.dashscope.config;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* 阿里百炼工作流配置
*
* @author 苍镜月
* @since 2.16.0
*/
@ConfigurationProperties(prefix = "liteflow.ai.workflow.dashscope")
public class DashScopeWorkflowProperty {
private String apiKey;
private String apiUrl;
public String getApiKey() {
return apiKey;
}
public String getApiUrl() {
return apiUrl;
}
public void setApiKey(String apiKey) {
this.apiKey = apiKey;
}
public void setApiUrl(String apiUrl) {
this.apiUrl = apiUrl;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/dromara/liteFlow.git
git@gitee.com:dromara/liteFlow.git
dromara
liteFlow
liteFlow
ed9d4691eea1872f4064da26ba6a09085753aca3

搜索帮助