Explorar el Código

feat(types): 修改/添加 检测清单所需属性

zhangweicheng hace 4 años
padre
commit
a6c5c352a9
Se han modificado 1 ficheros con 4 adiciones y 2 borrados
  1. 4 2
      types/src/interface/bill.ts

+ 4 - 2
types/src/interface/bill.ts

@@ -141,10 +141,12 @@ export interface IBill extends IBRBase {
   engContent?: string; // 工程内容
   serviceContent?: string; // 服务内容
   claimVisa?: string; // 签证及索赔依据
-  checkResult?: string; // 机器检测结果
+  checkFormResult?: string; // 形式检测结果
+  checkMaterialResult?: string; // 材料检测结果
   priceScope?: IPriceScope; // 价格区间
   classCode?: string; // 类别别名,清单经过机器检测后会加上
-  checkRationResult?:string;//机器检测结果(必套、选套、错套定额相关)
+  checkRationResult?: string; // 机器检测结果(必套、选套、错套定额相关)
+  checked?: boolean; // 是否已经进行清单检测过的清单,为true表式已经检测过了(用来计算通过率)
   [key: string]: any; // 剩下的之后补充
 }