@ningboyz/types 1.0.25 → 1.0.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
|
@@ -71,8 +71,8 @@ export class TCardMainFindResponse implements ICardMainFindResponse {
|
|
|
71
71
|
cardDept: IDeptResponse[] = [];
|
|
72
72
|
cardUser: IUserResponse[] = [];
|
|
73
73
|
cardKeep: IUserResponse[] = [];
|
|
74
|
-
canSplit: number =
|
|
75
|
-
fromCardStat: number =
|
|
74
|
+
canSplit: number = -1;
|
|
75
|
+
fromCardStat: number = -3;
|
|
76
76
|
cardZcyzRange: IRangeVal = new TRangeVal();
|
|
77
77
|
cardZcdjRange: IRangeVal = new TRangeVal();
|
|
78
78
|
cardZjzt: IDictResponse[] = [];
|
|
@@ -8,6 +8,7 @@ export interface IResponse<T> {
|
|
|
8
8
|
ONSTATUS: boolean;
|
|
9
9
|
DATATIME: number;
|
|
10
10
|
DATADATE: number;
|
|
11
|
+
TOTALCNT: number;
|
|
11
12
|
}
|
|
12
13
|
|
|
13
14
|
export class TResponse {
|
|
@@ -19,6 +20,7 @@ export class TResponse {
|
|
|
19
20
|
LISTDATA: [],
|
|
20
21
|
ONSTATUS: false,
|
|
21
22
|
DATATIME: new Date().getTime(),
|
|
23
|
+
TOTALCNT: 0,
|
|
22
24
|
DATADATE: 0
|
|
23
25
|
};
|
|
24
26
|
return result;
|
|
@@ -32,6 +34,7 @@ export class TResponse {
|
|
|
32
34
|
LISTDATA: data,
|
|
33
35
|
ONSTATUS: true,
|
|
34
36
|
DATATIME: new Date().getTime(),
|
|
37
|
+
TOTALCNT: 0,
|
|
35
38
|
DATADATE: 0
|
|
36
39
|
};
|
|
37
40
|
return result;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
export interface IWtuiRootResponse {
|
|
2
|
+
whoBuild: number;
|
|
3
|
+
userIndx: number;
|
|
4
|
+
rootIndx: number;
|
|
5
|
+
wtuiMain: number;
|
|
6
|
+
dataStat: number;
|
|
7
|
+
dataHide: number;
|
|
8
|
+
dataOrdr: number;
|
|
9
|
+
dataFrom: number;
|
|
10
|
+
dataDate: number;
|
|
11
|
+
dataTime: number;
|
|
12
|
+
mastName: string;
|
|
13
|
+
mastGUID: string;
|
|
14
|
+
createBy: string;
|
|
15
|
+
createAt: number;
|
|
16
|
+
updateBy: string;
|
|
17
|
+
updateAt: number;
|
|
18
|
+
deleteBy: string;
|
|
19
|
+
deleteAt: number;
|
|
20
|
+
queuesBy: number;
|
|
21
|
+
entityID: string;
|
|
22
|
+
rootName: string;
|
|
23
|
+
funcCall: number;
|
|
24
|
+
onBase64: number;
|
|
25
|
+
asMobile: number;
|
|
26
|
+
onExpand: number;
|
|
27
|
+
icon4URL: string;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export class TWtuiRootResponse implements IWtuiRootResponse {
|
|
31
|
+
whoBuild: number = 0;
|
|
32
|
+
userIndx: number = 0;
|
|
33
|
+
rootIndx: number = 0;
|
|
34
|
+
wtuiMain: number = 0;
|
|
35
|
+
dataStat: number = 0;
|
|
36
|
+
dataHide: number = 0;
|
|
37
|
+
dataOrdr: number = 0;
|
|
38
|
+
dataFrom: number = 0;
|
|
39
|
+
dataDate: number = 0;
|
|
40
|
+
dataTime: number = 0;
|
|
41
|
+
mastName: string = "";
|
|
42
|
+
mastGUID: string = "";
|
|
43
|
+
createBy: string = "";
|
|
44
|
+
createAt: number = 0;
|
|
45
|
+
updateBy: string = "";
|
|
46
|
+
updateAt: number = 0;
|
|
47
|
+
deleteBy: string = "";
|
|
48
|
+
deleteAt: number = 0;
|
|
49
|
+
queuesBy: number = 0;
|
|
50
|
+
entityID: string = "";
|
|
51
|
+
rootName: string = "";
|
|
52
|
+
funcCall: number = 0;
|
|
53
|
+
onBase64: number = 0;
|
|
54
|
+
asMobile: number = 0;
|
|
55
|
+
onExpand: number = 0;
|
|
56
|
+
icon4URL: string = "";
|
|
57
|
+
}
|
package/src/wtui/index.ts
CHANGED
|
@@ -13,6 +13,7 @@ import { IWtuiTodoResponseWithPara, TWtuiTodoResponseWithPara } from "./IWtuiTod
|
|
|
13
13
|
import { IWtuiNodeResponse, TWtuiNodeResponse } from "./IWtuiNodeResponse";
|
|
14
14
|
import { IWtuiUserCnfgResponse, TWtuiUserCnfgResponse } from "./IWtuiUserCnfgResponse";
|
|
15
15
|
import { IWtuiColWidthResponse, TWtuiColWidthResponse } from "./IWtuiColWidthResponse";
|
|
16
|
+
import { IWtuiRootResponse, TWtuiRootResponse } from "./IWtuiRootResponse";
|
|
16
17
|
|
|
17
18
|
export {
|
|
18
19
|
type IDictEffect,
|
|
@@ -26,12 +27,13 @@ export {
|
|
|
26
27
|
type IWtuiItemResponse,
|
|
27
28
|
type IWtuiMainResponse,
|
|
28
29
|
type IWtuiNodeResponse,
|
|
30
|
+
type IWtuiRootResponse,
|
|
29
31
|
type IWtuiTodoResponse,
|
|
30
32
|
type IWtuiTodoResponseTodoPara,
|
|
31
|
-
type IWtuiTodoResponseWithPara,
|
|
32
|
-
type IWtuiUserCnfgResponse,
|
|
33
|
-
type IWtuiViewResponse,
|
|
34
|
-
type IWtuiZoneResponse,
|
|
33
|
+
type IWtuiTodoResponseWithPara,
|
|
34
|
+
type IWtuiUserCnfgResponse,
|
|
35
|
+
type IWtuiViewResponse,
|
|
36
|
+
type IWtuiZoneResponse,
|
|
35
37
|
TDictEffect,
|
|
36
38
|
TDictEffectData,
|
|
37
39
|
TDictEffectField,
|
|
@@ -42,10 +44,11 @@ export {
|
|
|
42
44
|
TWtuiItemResponse,
|
|
43
45
|
TWtuiMainResponse,
|
|
44
46
|
TWtuiNodeResponse,
|
|
47
|
+
TWtuiRootResponse,
|
|
45
48
|
TWtuiTodoResponse,
|
|
46
49
|
TWtuiTodoResponseTodoPara,
|
|
47
50
|
TWtuiTodoResponseWithPara,
|
|
48
|
-
TWtuiUserCnfgResponse,
|
|
51
|
+
TWtuiUserCnfgResponse,
|
|
49
52
|
TWtuiViewResponse,
|
|
50
|
-
TWtuiZoneResponse
|
|
53
|
+
TWtuiZoneResponse
|
|
51
54
|
};
|