|
|
@@ -139,10 +139,14 @@ export interface IConditionItem {
|
|
|
value: string;
|
|
|
}
|
|
|
|
|
|
+export interface ICondition {
|
|
|
+ condition: IConditionItem[];
|
|
|
+}
|
|
|
+
|
|
|
// 3合1分支条件信息
|
|
|
export interface IConditionInfoItem {
|
|
|
ID: string;
|
|
|
- specificCondition: IConditionItem[][];
|
|
|
+ specificCondition: ICondition[];
|
|
|
// eslint-disable-next-line prettier/prettier, no-use-before-define
|
|
|
process: IProcedureProcess[];
|
|
|
}
|