@ningboyz/types 1.7.129 → 1.7.131
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) {
|
|
@@ -3,6 +3,7 @@ import { IUnitResponse } from "../core";
|
|
|
3
3
|
import { TFlowDataResponse } from "../flow/IFlowDataResponse";
|
|
4
4
|
import { ICellEditResponse } from "./ICellEditResponse";
|
|
5
5
|
import { IGzzdBillResponse } from "./IGzzdBillResponse";
|
|
6
|
+
import { IUserEditResponse } from "./IUserEditResponse";
|
|
6
7
|
|
|
7
8
|
export interface IGzzdMainResponse {
|
|
8
9
|
whoBuild: number;
|
|
@@ -96,6 +97,7 @@ export interface IGzzdMainResponse {
|
|
|
96
97
|
listBill: IGzzdBillResponse[];
|
|
97
98
|
readUnit: IUnitResponse[];
|
|
98
99
|
cellEdit: ICellEditResponse[];
|
|
100
|
+
userEdit: IUserEditResponse[];
|
|
99
101
|
}
|
|
100
102
|
|
|
101
103
|
export class TGzzdMainResponse implements IGzzdMainResponse {
|
|
@@ -186,6 +188,7 @@ export class TGzzdMainResponse implements IGzzdMainResponse {
|
|
|
186
188
|
listBill: IGzzdBillResponse[] = [];
|
|
187
189
|
readUnit: IUnitResponse[] = [];
|
|
188
190
|
cellEdit: ICellEditResponse[] = [];
|
|
191
|
+
userEdit: IUserEditResponse[] = [];
|
|
189
192
|
|
|
190
193
|
constructor(gzzd: keyof IGzzdMainResponse | object) {
|
|
191
194
|
if (gzzd) {
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
export interface IUserEditResponse {
|
|
2
|
+
whoBuild: number;
|
|
3
|
+
userIndx: number;
|
|
4
|
+
idEntity: number;
|
|
5
|
+
gzzdMain: number;
|
|
6
|
+
kjndKJQJ: number;
|
|
7
|
+
dataStat: number;
|
|
8
|
+
dataHide: number;
|
|
9
|
+
dataOrdr: number;
|
|
10
|
+
dataFrom: number;
|
|
11
|
+
dataDate: number;
|
|
12
|
+
dataTime: number;
|
|
13
|
+
createBy: string;
|
|
14
|
+
createAt: number;
|
|
15
|
+
updateBy: string;
|
|
16
|
+
updateAt: number;
|
|
17
|
+
deleteBy: string;
|
|
18
|
+
deleteAt: number;
|
|
19
|
+
queuesBy: number;
|
|
20
|
+
userMain: number;
|
|
21
|
+
dictMain: number;
|
|
22
|
+
colIndex: number;
|
|
23
|
+
cellText: string;
|
|
24
|
+
valueOld: string;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export class TUserEditResponse implements IUserEditResponse {
|
|
28
|
+
whoBuild: number = 0;
|
|
29
|
+
userIndx: number = 0;
|
|
30
|
+
idEntity: number = 0;
|
|
31
|
+
gzzdMain: number = 0;
|
|
32
|
+
kjndKJQJ: number = 0;
|
|
33
|
+
dataStat: number = 0;
|
|
34
|
+
dataHide: number = 0;
|
|
35
|
+
dataOrdr: number = 0;
|
|
36
|
+
dataFrom: number = 0;
|
|
37
|
+
dataDate: number = 0;
|
|
38
|
+
dataTime: number = 0;
|
|
39
|
+
createBy: string = "";
|
|
40
|
+
createAt: number = 0;
|
|
41
|
+
updateBy: string = "";
|
|
42
|
+
updateAt: number = 0;
|
|
43
|
+
deleteBy: string = "";
|
|
44
|
+
deleteAt: number = 0;
|
|
45
|
+
queuesBy: number = 0;
|
|
46
|
+
userMain: number = 0;
|
|
47
|
+
dictMain: number = 0;
|
|
48
|
+
colIndex: number = 0;
|
|
49
|
+
cellText: string = "";
|
|
50
|
+
valueOld: string = "";
|
|
51
|
+
}
|