feat: depoly model advanced

This commit is contained in:
jialin
2024-09-04 14:32:36 +08:00
parent 01101678b3
commit ca595da0c7
23 changed files with 1032 additions and 217 deletions
+10
View File
@@ -22,5 +22,15 @@ declare namespace Global {
id: number;
}
interface BaseListItem {
key: string;
value: string | number;
}
interface BaseOption {
label: string;
value: string | number;
}
type SearchParams = Pagination & { search?: string };
}