瀏覽代碼

feat(types): ICalcItem、ICalcTemplate

chenshilong 4 年之前
父節點
當前提交
c5cee266f1
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      types/src/interface/calculation.ts

+ 2 - 0
types/src/interface/calculation.ts

@@ -33,12 +33,14 @@ export interface ICalcItem {
   labourCoeID?: number;
   memo?: string;
   custom?: boolean;
+  [key: string]: any;
 }
 
 export interface ICalcTemplate {
   ID: number;
   name: string;
   calcItems: ICalcItem[];
+  [key: string]: any;
 }
 
 export interface IStdCalcProgram {