【增加】AI Image 增加 detail vo 定义

This commit is contained in:
cherishsince 2024-05-26 21:05:53 +08:00
parent 61418a1a1b
commit 3d5879ecb8

24
src/api/ai/image/index.ts Normal file
View File

@ -0,0 +1,24 @@
import request from '@/config/axios'
// AI API 密钥 VO
export interface ImageDetailVO {
id: number // 编号
prompt: string // 提示词
status: string // 状态
errorMessage: string // 错误信息
type: string // 模型下分不同的类型(清晰、真实...)
taskId: number // dr 任务id
imageUrl: string // 任务地址
originalPicUrl: string // 绘制图片地址
platform: string // 平台
model: string // 模型
}
// AI API 密钥 API
export const ApiKeyApi = {
// 查询 API 密钥分页
getApiKeyPage: async (params: any) => {
return await request.get({ url: `/ai/api-key/page`, params })
},
}