20 小时以前 c9172960bda01fca866969cc6ec4ca126eb97104
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package cn.iocoder.yudao.module.ai.controller.admin.model.vo.apikey;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.time.LocalDateTime;
 
@Schema(description = "管理后台 - AI API 密钥 Response VO")
@Data
public class AiApiKeyRespVO {
 
    @Schema(description = "编号", example = "1")
    private Long id;
 
    @Schema(description = "密钥名称", example = "通义千问")
    private String name;
 
    @Schema(description = "平台", example = "TongYi")
    private String platform;
 
    @Schema(description = "API 地址")
    private String url;
 
    @Schema(description = "状态", example = "0")
    private Integer status;
 
    @Schema(description = "创建时间")
    private LocalDateTime createTime;
 
}