@ningboyz/types 1.4.197 → 1.4.199

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ningboyz/types",
3
3
  "type": "module",
4
- "version": "1.4.197",
4
+ "version": "1.4.199",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -81,6 +81,7 @@ export interface IFlowDataResponse {
81
81
  dataFrom: number; //1手机端,0电脑端
82
82
  flowTypeText: string;
83
83
  nodePara: string;
84
+ userList: TCore.IUserLiteResponse[];
84
85
 
85
86
  listFlow: IFlowDataResponse[];
86
87
  }
@@ -165,6 +166,7 @@ export class TFlowDataResponse implements IFlowDataResponse {
165
166
  flowTypeText: string = "";
166
167
 
167
168
  nodePara: string = "";
169
+ userList: TCore.IUserLiteResponse[] = [];
168
170
 
169
171
  listFlow: IFlowDataResponse[] = [];
170
172
 
@@ -99,6 +99,7 @@ export interface IHznjNotiResponse {
99
99
  listBill: THznj.IHznjNotiBillResponse[];
100
100
  listCJBM: TCore.IDeptResponse[];
101
101
  listFrom: THznj.IHznjXmjjItemResponse[];
102
+ listItem: THznj.IHznjXmjjItemResponse[];
102
103
  }
103
104
 
104
105
  type Type = IHznjNotiResponse;
@@ -187,6 +188,7 @@ export class THznjNotiResponse implements IHznjNotiResponse {
187
188
  listBill: THznj.IHznjNotiBillResponse[] = [];
188
189
  listCJBM: TCore.IDeptResponse[] = [];
189
190
  listFrom: THznj.IHznjXmjjItemResponse[] = [];
191
+ listItem: THznj.IHznjXmjjItemResponse[] = [];
190
192
 
191
193
  listPath: TCore.IPathResponse[] = [];
192
194