Procházet zdrojové kódy

feat(types): 审核明细数据

vian před 3 roky
rodič
revize
0de14cb69e
1 změnil soubory, kde provedl 30 přidání a 0 odebrání
  1. 30 0
      types/src/interface/process.ts

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

@@ -503,6 +503,36 @@ export interface IAuditSummaryItem {
   compareToReport: IAuditSummaryDiff;
 }
 
+// 审核明细数据
+export interface IAuditDetailItem {
+  // 唯一标识,table渲染需要
+  ID: string;
+  // 步骤名
+  process: string;
+  // 单位
+  institution: string;
+  // 姓名
+  userName: string;
+  // 角色:负责人、协审
+  role: string;
+  // 起始金额
+  beginFee: string;
+  // 结束金额
+  endFee: string;
+  // 审增
+  incFee: string;
+  // 审减
+  decFee: string;
+  // 增减比例
+  rate: string;
+  // 状态文本
+  status: string;
+  // 审核状态
+  approvalStatus: string;
+  // 协审为子项
+  children: IAuditDetailItem[];
+}
+
 // 审核意见表(入库数据)
 export interface IAuditComment {
   ID: string;