Explorar el Código

fix 修复 DemoTree 实体缺少属性

疯狂的狮子Li hace 2 años
padre
commit
e7c777ac50
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. 5 0
      src/api/demo/tree/types.ts

+ 5 - 0
src/api/demo/tree/types.ts

@@ -23,6 +23,11 @@ export interface TreeVO {
    * 值
    */
   treeName: string;
+
+  /**
+   * 子对象
+   */
+  children: TreeVO[];
 }
 
 export interface TreeForm extends BaseEntity {