|
|
@@ -1,4 +1,13 @@
|
|
|
import { BusinessTypeKey, MatterTypeKey } from './gather';
|
|
|
+
|
|
|
+// 审批金额组件阶段数据
|
|
|
+export interface IAuditAmountConfig {
|
|
|
+ // 阶段名称
|
|
|
+ name: string;
|
|
|
+ // 关联步骤ID
|
|
|
+ stepID: string;
|
|
|
+}
|
|
|
+
|
|
|
// 事项
|
|
|
export interface IMatter {
|
|
|
ID: string;
|
|
|
@@ -11,6 +20,8 @@ export interface IMatter {
|
|
|
formSchema: any;
|
|
|
assembly: string[];
|
|
|
dataID: string;
|
|
|
+ // 审批金额组件配置
|
|
|
+ auditAmountConfig?: IAuditAmountConfig[];
|
|
|
}
|
|
|
|
|
|
export interface IGatherMatter extends IMatter {
|