Parcourir la source

feat(types): 清单定额类型调整

vian il y a 4 ans
Parent
commit
0de829622b
2 fichiers modifiés avec 4 ajouts et 0 suppressions
  1. 3 0
      types/src/interface/bill.ts
  2. 1 0
      types/src/interface/ration.ts

+ 3 - 0
types/src/interface/bill.ts

@@ -131,6 +131,9 @@ export interface IBill extends IBRBase {
   lockUnitPrice?: boolean; // 锁定单价
   maxPrice?: number; // 最高限价
   minPrice?: number; // 最低限价
+  engContent?: string; // 工程内容
+  serviceContent?: string; // 服务内容
+  claimVisa?: string; // 签证及索赔依据
   [key: string]: any; // 剩下的之后补充
 }
 

+ 1 - 0
types/src/interface/ration.ts

@@ -342,6 +342,7 @@ export interface IRation extends IBRBase {
   rationTemplate?: IRationTemplate; // 定额模板
   rationInstallList?: IRationInstall[]; // 定额安装增加
   addFromElf?: boolean; // 是否从清单精灵插入
+  [key: string]: any;
 }
 
 export interface IRations {