@ningboyz/types 1.7.130 → 1.7.132
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
|
@@ -30,12 +30,12 @@ export interface IUserFindResponse {
|
|
|
30
30
|
userXzlvList: number[];
|
|
31
31
|
userZwlxList: number[];
|
|
32
32
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
33
|
+
userTxrqRanage: IRangeVal
|
|
34
|
+
listInGender: number[] ;
|
|
35
|
+
listWorkType: IDictResponse[] //警种
|
|
36
|
+
listRankLevl: IDictResponse[] //警衔级
|
|
37
|
+
listRankCode: IDictResponse[]
|
|
38
|
+
listFromUserStat: number[]
|
|
39
39
|
keyWords: string; //关键字模糊查询
|
|
40
40
|
}
|
|
41
41
|
|
|
@@ -66,12 +66,12 @@ export class TUserFindResponse implements IUserFindResponse {
|
|
|
66
66
|
userXzlvList: number[] = [];
|
|
67
67
|
userZwlxList: number[] = [];
|
|
68
68
|
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
69
|
+
listInGender: number[] = [];
|
|
70
|
+
listWorkType: IDictResponse[] = [] //警种
|
|
71
|
+
listRankLevl: IDictResponse[] = [] //警衔级
|
|
72
|
+
listRankCode: IDictResponse[] = []
|
|
73
|
+
listFromUserStat: number[] = []
|
|
74
|
+
userTxrqRanage: IRangeVal = new TRangeVal();
|
|
75
75
|
keyWords: string = ""; //关键字模糊查询
|
|
76
76
|
|
|
77
77
|
|
|
@@ -92,12 +92,12 @@ export class TUserFindResponse implements IUserFindResponse {
|
|
|
92
92
|
this.listUserDept = [];
|
|
93
93
|
this.listUserUnit = [];
|
|
94
94
|
this.listUserType = [];
|
|
95
|
-
this.
|
|
96
|
-
this.
|
|
97
|
-
this.
|
|
98
|
-
this.
|
|
99
|
-
this.
|
|
100
|
-
this.
|
|
95
|
+
this.listInGender = [];
|
|
96
|
+
this.listWorkType = [];
|
|
97
|
+
this.listRankLevl = [];
|
|
98
|
+
this.listRankCode = [];
|
|
99
|
+
this.listFromUserStat = [];
|
|
100
|
+
this.userTxrqRanage = new TRangeVal();
|
|
101
101
|
}
|
|
102
102
|
|
|
103
103
|
public static toListUnit(values: number[] | number | undefined) {
|
|
@@ -20,6 +20,7 @@ export interface IUserEditResponse {
|
|
|
20
20
|
userMain: number;
|
|
21
21
|
dictMain: number;
|
|
22
22
|
colIndex: number;
|
|
23
|
+
editMode: number;
|
|
23
24
|
cellText: string;
|
|
24
25
|
valueOld: string;
|
|
25
26
|
}
|
|
@@ -46,6 +47,7 @@ export class TUserEditResponse implements IUserEditResponse {
|
|
|
46
47
|
userMain: number = 0;
|
|
47
48
|
dictMain: number = 0;
|
|
48
49
|
colIndex: number = 0;
|
|
50
|
+
editMode: number = 0;
|
|
49
51
|
cellText: string = "";
|
|
50
52
|
valueOld: string = "";
|
|
51
53
|
}
|