소스 검색

feat(types): 价格区间类别信息

zhangweicheng 4 년 전
부모
커밋
968f8f1f14
1개의 변경된 파일9개의 추가작업 그리고 0개의 파일을 삭제
  1. 9 0
      types/src/interface/bill.ts

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

@@ -112,6 +112,13 @@ export interface ISetBookmark {
   ID: string;
   content: string;
 }
+
+// 价格区间
+export interface IPriceScope {
+  minUnitPrice: number;
+  maxUnitPrice: number;
+}
+
 export interface IBill extends IBRBase {
   flag?: FixedFlag; // 清单固定类别
   recharge?: string; // 补注
@@ -134,6 +141,8 @@ export interface IBill extends IBRBase {
   engContent?: string; // 工程内容
   serviceContent?: string; // 服务内容
   claimVisa?: string; // 签证及索赔依据
+  checkResult?: string; // 机器检测结果
+  priceScope?: IPriceScope; // 价格区间
   [key: string]: any; // 剩下的之后补充
 }