upstream to API changes

This commit is contained in:
cracklesparkle
2024-07-01 17:51:50 +09:00
parent e70d94afec
commit 704276037c
9 changed files with 489 additions and 90 deletions

View File

@ -1,3 +1,4 @@
// owner_id relates to other companies
export interface ICompany {
name: string;
fullname: string;
@ -14,13 +15,15 @@ export interface IDepartment {
}
export interface IDocumentFolder {
id: number;
name: string;
description: string;
department_id: number;
create_date: string;
}
export interface IDocument {
id: number;
document_folder_id: number,
name: string;
description: string;
department_id: number;