@ningboyz/types 1.4.80 → 1.4.83
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[] = [];
|
|
@@ -208,6 +208,10 @@ export interface IZbzdMainResponse {
|
|
|
208
208
|
* 业务科室.名称
|
|
209
209
|
*/
|
|
210
210
|
deptFromText: string;
|
|
211
|
+
/**
|
|
212
|
+
* 资金性质.名称
|
|
213
|
+
*/
|
|
214
|
+
zjxzText: string;
|
|
211
215
|
/**
|
|
212
216
|
* 指标分录
|
|
213
217
|
*/
|
|
@@ -339,6 +343,7 @@ export class TZbzdMainResponse implements IZbzdMainResponse {
|
|
|
339
343
|
deptFrom: number = 0;
|
|
340
344
|
deptFromText: string = "";
|
|
341
345
|
sourceDw: string = "";
|
|
346
|
+
zjxzText: string = "";
|
|
342
347
|
|
|
343
348
|
listZBFL: IZbzbZbflResponse[] = [];
|
|
344
349
|
listPath: IPathResponse[] = [];
|