add api tool

This commit is contained in:
xie7654
2025-07-11 11:00:37 +08:00
parent bd9f9c39e3
commit ec30340b43
12 changed files with 534 additions and 7 deletions

View File

@@ -0,0 +1,22 @@
import { BaseModel } from '#/models/base';
export namespace AiToolApi {
export interface AiTool {
id: number;
remark: string;
creator: string;
modifier: string;
update_time: string;
create_time: string;
is_deleted: boolean;
name: string;
description: string;
status: number;
}
}
export class AiToolModel extends BaseModel<AiToolApi.AiTool> {
constructor() {
super('/ai/tool/');
}
}