2024-04-23 17:46:56 +08:00
|
|
|
export interface IFile {
|
|
|
|
|
create_date: string;
|
|
|
|
|
create_time: number;
|
|
|
|
|
created_by: string;
|
|
|
|
|
id: string;
|
2024-04-25 08:46:18 +08:00
|
|
|
kbs_info: { kb_id: string; kb_name: string }[];
|
2024-04-23 17:46:56 +08:00
|
|
|
location: string;
|
|
|
|
|
name: string;
|
|
|
|
|
parent_id: string;
|
|
|
|
|
size: number;
|
|
|
|
|
tenant_id: string;
|
|
|
|
|
type: string;
|
|
|
|
|
update_date: string;
|
|
|
|
|
update_time: number;
|
2024-05-11 16:03:07 +08:00
|
|
|
source_type: string;
|
2024-08-08 10:50:41 +08:00
|
|
|
has_child_folder?: boolean;
|
2024-04-23 17:46:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface IFolder {
|
|
|
|
|
create_date: string;
|
|
|
|
|
create_time: number;
|
|
|
|
|
created_by: string;
|
|
|
|
|
id: string;
|
|
|
|
|
location: string;
|
|
|
|
|
name: string;
|
|
|
|
|
parent_id: string;
|
|
|
|
|
size: number;
|
|
|
|
|
tenant_id: string;
|
|
|
|
|
type: string;
|
|
|
|
|
update_date: string;
|
|
|
|
|
update_time: number;
|
2024-05-14 16:53:32 +08:00
|
|
|
source_type: string;
|
2024-04-23 17:46:56 +08:00
|
|
|
}
|