Explorar o código

feat(types): ICalcItem、ICalcTemplate

chenshilong %!s(int64=5) %!d(string=hai) anos
pai
achega
c5cee266f1
Modificáronse 1 ficheiros con 2 adicións e 0 borrados
  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 {