Explorar o código

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

lishihao %!s(int64=4) %!d(string=hai) anos
pai
achega
dfe2bad65e
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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 };
 }