@ningboyz/types 1.5.43 → 1.5.45
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
|
@@ -82,6 +82,7 @@ export interface IFlowDataResponse {
|
|
|
82
82
|
dataFrom: number; //1手机端,0电脑端
|
|
83
83
|
flowTypeText: string;
|
|
84
84
|
nodePara: string;
|
|
85
|
+
paraOnly: number;
|
|
85
86
|
userList: TCore.IUserLiteResponse[];
|
|
86
87
|
|
|
87
88
|
listFlow: IFlowDataResponse[];
|
|
@@ -168,6 +169,7 @@ export class TFlowDataResponse implements IFlowDataResponse {
|
|
|
168
169
|
flowTypeText: string = "";
|
|
169
170
|
|
|
170
171
|
nodePara: string = "";
|
|
172
|
+
paraOnly: number = 0;
|
|
171
173
|
userList: TCore.IUserLiteResponse[] = [];
|
|
172
174
|
|
|
173
175
|
listFlow: IFlowDataResponse[] = [];
|
|
@@ -293,7 +293,6 @@ export class TYzcgMainResponse implements IYzcgMainResponse {
|
|
|
293
293
|
const result = new TFlowDataResponse();
|
|
294
294
|
result.whoBuild = yzcg.whoBuild;
|
|
295
295
|
result.userIndx = yzcg.userIndx;
|
|
296
|
-
result.userMain = yzcg.userMain;
|
|
297
296
|
result.flowMain = yzcg.flowMain;
|
|
298
297
|
result.flowNode = yzcg.flowNode;
|
|
299
298
|
result.notified = Const.Todo.CONST_STR_TODO_TYPE_TO_YZCG_WAIT;
|