瀏覽代碼

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

lishihao 5 年之前
父節點
當前提交
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 };
 }