@ningboyz/types 1.4.9 → 1.4.11
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
|
@@ -12,7 +12,21 @@ export interface pathTypeControl {
|
|
|
12
12
|
/** 是否可以拍摄上传附件 */
|
|
13
13
|
camera: boolean;
|
|
14
14
|
}
|
|
15
|
+
export interface TFlowNodeResponseNodeParaWithMYOA {
|
|
16
|
+
flowMain: number;
|
|
17
|
+
nodeIndx: number;
|
|
18
|
+
set4CardWhenReal: number;
|
|
19
|
+
userIndx: number;
|
|
20
|
+
whoBuild:number
|
|
21
|
+
}
|
|
15
22
|
|
|
23
|
+
export class TFlowNodeResponseNodeParaWithMYOA implements TFlowNodeResponseNodeParaWithMYOA {
|
|
24
|
+
flowMain: number = 0;
|
|
25
|
+
nodeIndx: number = 0;
|
|
26
|
+
set4CardWhenReal: number = 0;
|
|
27
|
+
userIndx: number = 0;
|
|
28
|
+
whoBuild: number = 0;
|
|
29
|
+
}
|
|
16
30
|
export interface IFlowNodeResponseNodePara {
|
|
17
31
|
/** 到达该审核节点时,是否必须签章完成 */
|
|
18
32
|
requiredSign: boolean;
|
|
@@ -176,6 +190,7 @@ export interface IFlowNodeResponse {
|
|
|
176
190
|
/** 可选节点.列表 */
|
|
177
191
|
listNext: IFlowNodeResponse[];
|
|
178
192
|
nodeParaConv: IFlowNodeResponseNodePara;
|
|
193
|
+
withMYOA: TFlowNodeResponseNodeParaWithMYOA;
|
|
179
194
|
}
|
|
180
195
|
|
|
181
196
|
// export interface IFlowNodeResponse {
|
|
@@ -478,6 +493,7 @@ export class TFlowNodeResponse implements IFlowNodeResponse {
|
|
|
478
493
|
listFrom: IFlowNodeResponse[] = [];
|
|
479
494
|
listNext: IFlowNodeResponse[] = [];
|
|
480
495
|
nodeParaConv: IFlowNodeResponseNodePara = new TFlowNodeResponseNodePara();
|
|
496
|
+
withMYOA: TFlowNodeResponseNodeParaWithMYOA = new TFlowNodeResponseNodeParaWithMYOA();
|
|
481
497
|
|
|
482
498
|
static parseJson(nodePara: string) {
|
|
483
499
|
const result = new TFlowNodeResponseNodePara();
|