init ai api key
This commit is contained in:
24
web/apps/web-antd/src/models/ai/ai_api_key.ts
Normal file
24
web/apps/web-antd/src/models/ai/ai_api_key.ts
Normal 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/');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user