Browse Source

feat(types): ICalcItem、ICalcTemplate

chenshilong 5 năm trước cách đây
mục cha
commit
c5cee266f1
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  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 {