소스 검색

feat(types): ICalcItem、ICalcTemplate

chenshilong 5 년 전
부모
커밋
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 {