Преглед изворни кода

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

lishihao пре 4 година
родитељ
комит
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 };
 }