@ningboyz/types 1.4.52 → 1.4.54
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
|
@@ -2,6 +2,7 @@ import _ from "lodash";
|
|
|
2
2
|
import { IDictResponse, IPartResponse, IUnitResponse, IUserLiteResponse } from "../core";
|
|
3
3
|
import { IPathResponse } from "../core/IPathResponse";
|
|
4
4
|
import { TFlowDataResponse } from "../flow/IFlowDataResponse";
|
|
5
|
+
import { TCore } from "..";
|
|
5
6
|
|
|
6
7
|
/**
|
|
7
8
|
*后端已校验
|
|
@@ -74,6 +75,10 @@ export interface INotiMainResponse {
|
|
|
74
75
|
*/
|
|
75
76
|
diskStat: number;
|
|
76
77
|
|
|
78
|
+
flowVal1: number;
|
|
79
|
+
flowVal2: number;
|
|
80
|
+
userFrom: number;
|
|
81
|
+
userFromText: string;
|
|
77
82
|
deptFrom: number;
|
|
78
83
|
deptFromText: string;
|
|
79
84
|
|
|
@@ -223,6 +228,7 @@ export interface INotiMainResponse {
|
|
|
223
228
|
*/
|
|
224
229
|
fileFrom: number;
|
|
225
230
|
notiUses: string;
|
|
231
|
+
listDept: TCore.IDeptResponse[];
|
|
226
232
|
}
|
|
227
233
|
|
|
228
234
|
export class TNotiMainResponse implements INotiMainResponse {
|
|
@@ -297,6 +303,10 @@ export class TNotiMainResponse implements INotiMainResponse {
|
|
|
297
303
|
*/
|
|
298
304
|
diskStat: number = 0;
|
|
299
305
|
|
|
306
|
+
flowVal1: number = -1;
|
|
307
|
+
flowVal2: number = -1;
|
|
308
|
+
userFrom: number = 0;
|
|
309
|
+
userFromText: string = "";
|
|
300
310
|
deptFrom: number = 0;
|
|
301
311
|
deptFromText: string = "";
|
|
302
312
|
|
|
@@ -374,6 +384,7 @@ export class TNotiMainResponse implements INotiMainResponse {
|
|
|
374
384
|
scanCode: string = "";
|
|
375
385
|
fileFrom: number = 0;
|
|
376
386
|
notiUses: string = "";
|
|
387
|
+
listDept: TCore.IDeptResponse[] = [];
|
|
377
388
|
|
|
378
389
|
constructor(card: any = {}) {
|
|
379
390
|
if (card) {
|