Przeglądaj źródła

feat(types): 造假文件信息

lipk 3 lat temu
rodzic
commit
b76094cea6

+ 0 - 1
types/src/interface/api/approvaApi.ts

@@ -22,7 +22,6 @@ export namespace GetApprovalGetMatterData {
   export type Params = {
     businessID: string;
     getAllMatter?: boolean; // 是否获取全部matter
-    test?: boolean;
   };
 
   export type Response = Array<IMatterNode>;

+ 8 - 7
types/src/interface/business.ts

@@ -1,12 +1,13 @@
 // 造价文件信息
 export interface ICostInfo {
-  constructionName: string;
-  constructionID: string;
-  orgFee: string; // 原报金额
-  conclusionFee: string; // 报审金额
-  billCheckPercentOfPass: string; // 清单检测合格率
-  isBillCheckPassed: boolean; // 清单检测是否通过(可能是多项目)
-  minPassRate: number; // 合格率线
+  orgFee: number; // 送审金额
+  conclusionFee: number; // 审结金额
+  dynamicFee: number; // 动态金额
+  provisionalFee: number; // 含预留金
+  incFee: number; // 核增金额
+  decFee: number; // 核减金额
+  incRate: number; // 核增率
+  decRate: number; // 核减率
 }
 
 export enum ShowBusinessType {