@ningboyz/types 1.6.24 → 1.6.27
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
|
@@ -29,6 +29,7 @@ export interface IAntvCnfgResponse {
|
|
|
29
29
|
notiName: string;
|
|
30
30
|
notiBody: string;
|
|
31
31
|
sql4Data: string;
|
|
32
|
+
sql4Text: string;
|
|
32
33
|
cnfgName: string;
|
|
33
34
|
cnfgMemo: string;
|
|
34
35
|
}
|
|
@@ -64,6 +65,7 @@ export class TAntvCnfgResponse implements IAntvCnfgResponse {
|
|
|
64
65
|
notiName: string = "";
|
|
65
66
|
notiBody: string = "";
|
|
66
67
|
sql4Data: string = "";
|
|
68
|
+
sql4Text: string = "";
|
|
67
69
|
cnfgName: string = "";
|
|
68
70
|
cnfgMemo: string = "";
|
|
69
71
|
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import _ from "lodash";
|
|
2
|
+
|
|
3
|
+
export interface IWzpzUserK8kmResponse {
|
|
4
|
+
whoBuild: number;
|
|
5
|
+
userIndx: number;
|
|
6
|
+
sourceND: number;
|
|
7
|
+
sourceID: number;
|
|
8
|
+
idEntity: number;
|
|
9
|
+
dataStat: number;
|
|
10
|
+
dataOrdr: number;
|
|
11
|
+
dataDate: number;
|
|
12
|
+
dataTime: number;
|
|
13
|
+
dataHide: number;
|
|
14
|
+
dataGUID: string;
|
|
15
|
+
createBy: string;
|
|
16
|
+
createAt: number;
|
|
17
|
+
updateBy: string;
|
|
18
|
+
updateAt: number;
|
|
19
|
+
deleteBy: string;
|
|
20
|
+
deleteAt: number;
|
|
21
|
+
queuesBy: number;
|
|
22
|
+
userMain: number;
|
|
23
|
+
k8kmKmid: number;
|
|
24
|
+
k8kmKmbm: string;
|
|
25
|
+
k8kmKmmc: string;
|
|
26
|
+
itemMain: number;
|
|
27
|
+
itemCode: string;
|
|
28
|
+
itemName: string;
|
|
29
|
+
billMemo: string;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export class TWzpzUserK8kmResponse implements IWzpzUserK8kmResponse {
|
|
33
|
+
whoBuild: number = 0;
|
|
34
|
+
userIndx: number = 0;
|
|
35
|
+
sourceND: number = 0;
|
|
36
|
+
sourceID: number = 0;
|
|
37
|
+
idEntity: number = 0;
|
|
38
|
+
dataStat: number = 0;
|
|
39
|
+
dataOrdr: number = 0;
|
|
40
|
+
dataDate: number = 0;
|
|
41
|
+
dataTime: number = 0;
|
|
42
|
+
dataHide: number = 0;
|
|
43
|
+
dataGUID: string = "";
|
|
44
|
+
createBy: string = "";
|
|
45
|
+
createAt: number = 0;
|
|
46
|
+
updateBy: string = "";
|
|
47
|
+
updateAt: number = 0;
|
|
48
|
+
deleteBy: string = "";
|
|
49
|
+
deleteAt: number = 0;
|
|
50
|
+
queuesBy: number = 0;
|
|
51
|
+
userMain: number = 0;
|
|
52
|
+
k8kmKmid: number = 0;
|
|
53
|
+
k8kmKmbm: string = "";
|
|
54
|
+
k8kmKmmc: string = "";
|
|
55
|
+
itemMain: number = 0;
|
|
56
|
+
itemCode: string = "";
|
|
57
|
+
itemName: string = "";
|
|
58
|
+
billMemo: string = "";
|
|
59
|
+
|
|
60
|
+
constructor(data: Partial<IWzpzUserK8kmResponse> = {}) {
|
|
61
|
+
if (data) {
|
|
62
|
+
_.merge(this, _.pick(data, Object.keys(this)));
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
}
|
package/src/wzpz/index.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { IWzpzKbkmResponse, TWzpzKbkmResponse } from "./IWzpzKbkmResponse";
|
|
|
6
6
|
import { IWzpzPckmResponse, TWzpzPckmResponse } from "./IWzpzPckmResponse";
|
|
7
7
|
import { IWzpzTypeResponse, TWzpzTypeResponse } from "./IWzpzTypeResponse";
|
|
8
8
|
import { IWzpzUserBodyResponse, TWzpzUserBodyResponse } from "./IWzpzUserBodyResponse";
|
|
9
|
+
import { IWzpzUserK8kmResponse, TWzpzUserK8kmResponse } from "./IWzpzUserK8kmResponse";
|
|
9
10
|
import { IWzWithParaResponse, TWzWithParaResponse } from "./IWzWithParaResponse";
|
|
10
11
|
|
|
11
12
|
export {
|
|
@@ -18,6 +19,8 @@ export {
|
|
|
18
19
|
type IWzpzTypeResponse,
|
|
19
20
|
type IWzWithParaResponse,
|
|
20
21
|
type IWzpzUserBodyResponse,
|
|
22
|
+
type IWzpzUserK8kmResponse,
|
|
23
|
+
|
|
21
24
|
TWzpzCnfgResponse,
|
|
22
25
|
TWzpzK0kmResponse,
|
|
23
26
|
TWzpzItemResponse,
|
|
@@ -26,5 +29,6 @@ export {
|
|
|
26
29
|
TWzpzPckmResponse,
|
|
27
30
|
TWzpzTypeResponse,
|
|
28
31
|
TWzWithParaResponse,
|
|
29
|
-
TWzpzUserBodyResponse
|
|
32
|
+
TWzpzUserBodyResponse,
|
|
33
|
+
TWzpzUserK8kmResponse
|
|
30
34
|
};
|