update 恢复误删除代码

This commit is contained in:
AprilWind 2024-12-17 16:40:11 +08:00
parent 089c6c2efa
commit b675dbfe80

View File

@ -1,3 +1,10 @@
export interface CategoryTreeVO {
id: number | string;
label: string;
parentId: number | string;
weight: number;
children: CategoryTreeVO[];
}
export interface CategoryVO {
/**