init ai api key

This commit is contained in:
xie7654
2025-07-10 15:32:00 +08:00
parent bf07ff5744
commit 65bdda6377
26 changed files with 1825 additions and 6 deletions

View File

@@ -0,0 +1,24 @@
import { BaseModel } from '#/models/base';
export namespace AiAIApiKeyApi {
export interface AiAIApiKey {
id: number;
remark: string;
creator: string;
modifier: string;
update_time: string;
create_time: string;
is_deleted: boolean;
name: string;
platform: string;
api_key: string;
url: string;
status: number;
}
}
export class AiAIApiKeyModel extends BaseModel<AiAIApiKeyApi.AiAIApiKey> {
constructor() {
super('/ai/ai_api_key/');
}
}