Browse Source

feat(types): 增加IInfoPriceClass接口定义

chenshilong 4 years ago
parent
commit
8047d6a776
1 changed files with 10 additions and 0 deletions
  1. 10 0
      types/src/interface/infoPrice.ts

+ 10 - 0
types/src/interface/infoPrice.ts

@@ -49,3 +49,13 @@ export interface IInfoPriceItem {
   remark: string;
   matchString?: string; // 临时变量关键词匹配时用到
 }
+
+export interface IInfoPriceClass {
+  compilationID: string;
+  class: number; // 42
+  code: string;
+  name: string;
+  specs: string;
+  unit: string;
+  classCode: string; // 00030A01 (5位+3位+3位)
+}