Просмотр исходного кода

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

lishihao 4 лет назад
Родитель
Сommit
dfe2bad65e
1 измененных файлов с 1 добавлено и 1 удалено
  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 };
 }