|
|
@@ -466,7 +466,7 @@ export interface IConditionSetting {
|
|
|
}
|
|
|
|
|
|
// 审核金额 核减、增金额数据
|
|
|
-export interface IAuditAmountDiff {
|
|
|
+export interface IAuditSummaryDiff {
|
|
|
// 核减金额
|
|
|
decFee: string;
|
|
|
// 核增金额
|
|
|
@@ -482,7 +482,7 @@ export interface IAuditAmountDiff {
|
|
|
}
|
|
|
|
|
|
// 审批金额汇总表数据
|
|
|
-export interface IAuditAmountItem {
|
|
|
+export interface IAuditSummaryItem {
|
|
|
// 阶段
|
|
|
stage: string;
|
|
|
// 执行者名称
|
|
|
@@ -496,7 +496,7 @@ export interface IAuditAmountItem {
|
|
|
// 金额
|
|
|
fee: string;
|
|
|
// 与上一阶段对比
|
|
|
- compareToPrev: IAuditAmountDiff;
|
|
|
+ compareToPrev: IAuditSummaryDiff;
|
|
|
// 与上送审对比
|
|
|
- compareToReport: IAuditAmountDiff;
|
|
|
+ compareToReport: IAuditSummaryDiff;
|
|
|
}
|