@ningboyz/types 1.4.80 → 1.4.82
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -191,6 +191,8 @@ export interface IFlowNodeResponse {
|
|
|
191
191
|
listNext: IFlowNodeResponse[];
|
|
192
192
|
nodeParaConv: IFlowNodeResponseNodePara;
|
|
193
193
|
withMYOA: TFlowNodeResponseNodeParaWithMYOA;
|
|
194
|
+
// 下一节点是否跳岗
|
|
195
|
+
autoNextText: string;
|
|
194
196
|
}
|
|
195
197
|
|
|
196
198
|
// export interface IFlowNodeResponse {
|
|
@@ -486,7 +488,7 @@ export class TFlowNodeResponse implements IFlowNodeResponse {
|
|
|
486
488
|
sql4userWhenNext: string = "";
|
|
487
489
|
sql4deptWhenReal: string = "";
|
|
488
490
|
sql4deptWhenNext: string = "";
|
|
489
|
-
|
|
491
|
+
autoNextText: string = "";
|
|
490
492
|
listPart: IPartResponse[] = [];
|
|
491
493
|
listDWLX: IDictResponse[] = [];
|
|
492
494
|
listBMLX: IDictResponse[] = [];
|