Kaynağa Gözat

feat(types): 修改指标库清单类型

zhangweicheng 4 yıl önce
ebeveyn
işleme
d4c7551001
1 değiştirilmiş dosya ile 8 ekleme ve 8 silme
  1. 8 8
      types/src/interface/bill.ts

+ 8 - 8
types/src/interface/bill.ts

@@ -227,18 +227,18 @@ export interface IBillIndexGlj {
   name: string;
   specs: string;
   unit: string;
-  quantity: number;
-  marketPrice: number;
-  basePrice: number;
-  rationQuantity: number;
+  quantity: string;
+  marketPrice: string;
+  basePrice: string;
+  rationQuantity: string;
 }
 
 export interface IBillIndexRation {
   code: string;
   name: string;
   unit: string;
-  quantity: number;
-  unitPrice: number;
+  quantity: string;
+  unitPrice: string;
   rationGljList: IBillIndexGlj[];
 }
 
@@ -251,8 +251,8 @@ export interface IBillIndex {
   code: string;
   name: string;
   unit: string;
-  quantity: number;
+  quantity: string;
   itemCharacter: string;
-  unitPrice: number; // 综合单价
+  unitPrice: string; // 综合单价
   rations: IBillIndexRation[];
 }