@ningboyz/types 1.7.128 → 1.7.130
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
|
@@ -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
|
+
}
|