Przeglądaj źródła

fix(types): 1.修改报表树的flags类型

lishihao 4 lat temu
rodzic
commit
dfe2bad65e
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      types/src/interface/report.ts

+ 1 - 1
types/src/interface/report.ts

@@ -15,7 +15,7 @@ export interface ReportTree {
   isDeleted: boolean;
   name: string;
   items: ReportSubTree[] | null;
-  flags?: { constructSumType?: string | null, taxType?: number | null, auditType?: string | null };
+  flags?: { constructSumType?: string | null, taxType?: string | null, auditType?: string | null };
 }