Quellcode durchsuchen

feat(types): 增加费用项ID

vian vor 3 Jahren
Ursprung
Commit
ca0018f3b2
1 geänderte Dateien mit 5 neuen und 0 gelöschten Zeilen
  1. 5 0
      types/src/interface/process.ts

+ 5 - 0
types/src/interface/process.ts

@@ -592,6 +592,8 @@ export interface ISettlementItem {
   curFee: string;
   curFee: string;
   // 清单检测合格率
   // 清单检测合格率
   billCheckRate: string;
   billCheckRate: string;
+  // 费用项ID
+  feeID?: string;
   // 费用类型
   // 费用类型
   type?: AuditMoneyType;
   type?: AuditMoneyType;
 }
 }
@@ -625,5 +627,8 @@ export interface ISettlementAuditItem {
   // 审核状态
   // 审核状态
   approvalStatus?: string;
   approvalStatus?: string;
   children: ISettlementAuditItem[];
   children: ISettlementAuditItem[];
+  // 费用项ID
+  feeID?: string;
+  // 费用类型
   type?: AuditMoneyType;
   type?: AuditMoneyType;
 }
 }