AI配置增加字段适配处理

This commit is contained in:
2025-12-23 16:51:53 +08:00
parent 2d033e6a3e
commit 7f89fd17d3
22 changed files with 2951 additions and 4 deletions
@@ -67,6 +67,24 @@ public class AiConfig extends BaseEntity {
@TableField("api_version")
private String apiVersion;
/**
* 客户端ID (OAuth认证)
*/
@TableField("client_id")
private String clientId;
/**
* 客户端密钥 (OAuth认证,加密存储)
*/
@TableField("client_secret")
private String clientSecret;
/**
* 授权类型: client_credentials, authorization_code, password等
*/
@TableField("grant_type")
private String grantType;
/**
* 模型名称
*/