feat(noc): integrate DocumentStat model and sync with external NOC API

This commit is contained in:
2026-03-31 15:04:51 +08:00
parent 11ef320d55
commit 6ace5b5d1c
9 changed files with 260 additions and 39 deletions

View File

@@ -894,21 +894,30 @@ export interface operations {
};
content: {
"application/json": {
success: boolean;
message: string;
data: {
category: string;
count: number;
label: string;
value: number;
color: string;
}[];
};
"multipart/form-data": {
success: boolean;
message: string;
data: {
category: string;
count: number;
label: string;
value: number;
color: string;
}[];
};
"text/plain": {
success: boolean;
message: string;
data: {
category: string;
count: number;
label: string;
value: number;
color: string;
}[];
};
};