@ningboyz/types 1.6.103 → 1.6.105
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
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
export interface ICardZcpdBillResponse {
|
|
2
|
+
whoBuild: number;
|
|
3
|
+
userIndx: number;
|
|
4
|
+
billIndx: number;
|
|
5
|
+
cardZcpd: number;
|
|
6
|
+
dataStat: number;
|
|
7
|
+
dataHide: number;
|
|
8
|
+
dataOrdr: number;
|
|
9
|
+
dataFrom: number;
|
|
10
|
+
dataType: 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
|
+
cardMain: number;
|
|
21
|
+
cardExid: number;
|
|
22
|
+
normalSize: number;
|
|
23
|
+
scrapSize: number;
|
|
24
|
+
otherSize: number;
|
|
25
|
+
cardArea: string;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
export class TCardZcpdBillResponse implements ICardZcpdBillResponse {
|
|
30
|
+
whoBuild: number = 0;
|
|
31
|
+
userIndx: number = 0;
|
|
32
|
+
billIndx: number = 0;
|
|
33
|
+
cardZcpd: number = 0;
|
|
34
|
+
dataStat: number = 0;
|
|
35
|
+
dataHide: number = 0;
|
|
36
|
+
dataOrdr: number = 0;
|
|
37
|
+
dataFrom: number = 0;
|
|
38
|
+
dataType: number = 0;
|
|
39
|
+
dataDate: number = 0;
|
|
40
|
+
dataTime: number = 0;
|
|
41
|
+
createBy: string = "";
|
|
42
|
+
createAt: number = 0;
|
|
43
|
+
updateBy: string = "";
|
|
44
|
+
updateAt: number = 0;
|
|
45
|
+
deleteBy: string = "";
|
|
46
|
+
deleteAt: number = 0;
|
|
47
|
+
queuesBy: number = 0;
|
|
48
|
+
cardMain: number = 0;
|
|
49
|
+
cardExid: number = 0;
|
|
50
|
+
normalSize: number = 0;
|
|
51
|
+
scrapSize: number = 0;
|
|
52
|
+
otherSize: number = 0;
|
|
53
|
+
cardArea: string = "";
|
|
54
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { IDeptResponse, ILaidResponse } from "../core";
|
|
2
|
+
import { ICardZcpdBillResponse } from "./ICardZcpdBillResponse";
|
|
3
|
+
|
|
4
|
+
export interface ICardZcpdResponse {
|
|
5
|
+
whoBuild: number;
|
|
6
|
+
userIndx: number;
|
|
7
|
+
zcpdIndx: number;
|
|
8
|
+
dataStat: number;
|
|
9
|
+
dataHide: number;
|
|
10
|
+
dataOrdr: number;
|
|
11
|
+
dataFrom: number;
|
|
12
|
+
dataDate: number;
|
|
13
|
+
dataTime: number;
|
|
14
|
+
userMain: number;
|
|
15
|
+
createBy: string;
|
|
16
|
+
createAt: number;
|
|
17
|
+
updateBy: string;
|
|
18
|
+
updateAt: number;
|
|
19
|
+
deleteBy: string;
|
|
20
|
+
deleteAt: number;
|
|
21
|
+
queuesBy: number;
|
|
22
|
+
entityID: string;
|
|
23
|
+
unitMain: number;
|
|
24
|
+
deptMain: number;
|
|
25
|
+
menuMain: number;
|
|
26
|
+
menuUUID: string;
|
|
27
|
+
zcpdDate: number;
|
|
28
|
+
zcpdType: number;
|
|
29
|
+
zcpdCode: string;
|
|
30
|
+
zcpdName: string;
|
|
31
|
+
cardRzrq: number;
|
|
32
|
+
zcpdMemo: string;
|
|
33
|
+
|
|
34
|
+
listDept: IDeptResponse[];
|
|
35
|
+
listLaid: ILaidResponse[];
|
|
36
|
+
listBill: ICardZcpdBillResponse[];
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export class TCardZcpdResponse implements ICardZcpdResponse {
|
|
40
|
+
whoBuild: number = 0;
|
|
41
|
+
userIndx: number = 0;
|
|
42
|
+
zcpdIndx: number = 0;
|
|
43
|
+
dataStat: number = 0;
|
|
44
|
+
dataHide: number = 0;
|
|
45
|
+
dataOrdr: number = 0;
|
|
46
|
+
dataFrom: number = 0;
|
|
47
|
+
dataDate: number = 0;
|
|
48
|
+
dataTime: number = 0;
|
|
49
|
+
userMain: number = 0;
|
|
50
|
+
createBy: string = "";
|
|
51
|
+
createAt: number = 0;
|
|
52
|
+
updateBy: string = "";
|
|
53
|
+
updateAt: number = 0;
|
|
54
|
+
deleteBy: string = "";
|
|
55
|
+
deleteAt: number = 0;
|
|
56
|
+
queuesBy: number = 0;
|
|
57
|
+
entityID: string = "";
|
|
58
|
+
unitMain: number = 0;
|
|
59
|
+
deptMain: number = 0;
|
|
60
|
+
menuMain: number = 0;
|
|
61
|
+
menuUUID: string = "";
|
|
62
|
+
zcpdDate: number = 0;
|
|
63
|
+
zcpdType: number = 0;
|
|
64
|
+
zcpdCode: string = "";
|
|
65
|
+
zcpdName: string = "";
|
|
66
|
+
cardRzrq: number = 0;
|
|
67
|
+
zcpdMemo: string = "";
|
|
68
|
+
|
|
69
|
+
listDept: IDeptResponse[] = [];
|
|
70
|
+
listLaid: ILaidResponse[] = [];
|
|
71
|
+
listBill: ICardZcpdBillResponse[] = [];
|
|
72
|
+
}
|
package/src/card/index.ts
CHANGED
|
@@ -7,6 +7,8 @@ import { ICardHyhbResponse, TCardHyhbResponse } from "./ICardHyhbResponse.ts";
|
|
|
7
7
|
import { ICardMainFindResponse, IRangeVal, TCardMainFindResponse, TRangeVal } from "./ICardMainFindResponse";
|
|
8
8
|
import { ICardMainResponse, TCardMainResponse } from "./ICardMainResponse";
|
|
9
9
|
import { ICardRoomResponse, TCardRoomResponse } from "./ICardRoomResponse.ts";
|
|
10
|
+
import { ICardZcpdBillResponse, TCardZcpdBillResponse } from "./ICardZcpdBillResponse";
|
|
11
|
+
import { ICardZcpdResponse, TCardZcpdResponse } from "./ICardZcpdResponse";
|
|
10
12
|
import { IGblbResponse, TGblbResponse } from "./IGblbResponse";
|
|
11
13
|
import { IP4pzResponse, TP4pzResponse } from "./IP4pzResponse";
|
|
12
14
|
import { ISyszclbgblbResponse, TSyszclbgblbResponse } from "./ISyszclbgblbResponse";
|
|
@@ -19,14 +21,14 @@ import { IZczjPropResponse, TZczjPropResponse } from "./IZczjPropResponse";
|
|
|
19
21
|
import { IZczjResponse, TZczjResponse } from "./IZczjResponse";
|
|
20
22
|
|
|
21
23
|
export {
|
|
22
|
-
TCardBookResponse,
|
|
23
|
-
TCardFwczResponse,
|
|
24
|
+
TCardBookResponse, TCardDataResponse, TCardFromResponse, TCardFwczResponse,
|
|
24
25
|
TCardHyhbBillResponse,
|
|
25
26
|
TCardHyhbResponse,
|
|
26
27
|
TCardMainFindResponse,
|
|
27
28
|
TCardMainResponse,
|
|
28
29
|
TCardRoomResponse,
|
|
29
|
-
|
|
30
|
+
TCardZcpdBillResponse,
|
|
31
|
+
TCardZcpdResponse,
|
|
30
32
|
TGblbResponse,
|
|
31
33
|
TP4pzResponse,
|
|
32
34
|
TRangeVal,
|
|
@@ -38,15 +40,17 @@ export {
|
|
|
38
40
|
TZclbResponse,
|
|
39
41
|
TZczjPropResponse,
|
|
40
42
|
TZczjResponse,
|
|
41
|
-
TCardFromResponse,
|
|
42
43
|
type ICardBookResponse,
|
|
44
|
+
type ICardDataResponse,
|
|
45
|
+
type ICardFromResponse,
|
|
43
46
|
type ICardFwczResponse,
|
|
44
47
|
type ICardHyhbBillResponse,
|
|
45
48
|
type ICardHyhbResponse,
|
|
46
49
|
type ICardMainFindResponse,
|
|
47
50
|
type ICardMainResponse,
|
|
48
51
|
type ICardRoomResponse,
|
|
49
|
-
type
|
|
52
|
+
type ICardZcpdBillResponse,
|
|
53
|
+
type ICardZcpdResponse,
|
|
50
54
|
type IGblbResponse,
|
|
51
55
|
type IP4pzResponse,
|
|
52
56
|
type IRangeVal,
|
|
@@ -57,6 +61,6 @@ export {
|
|
|
57
61
|
type IZcdbResponse,
|
|
58
62
|
type IZclbResponse,
|
|
59
63
|
type IZczjPropResponse,
|
|
60
|
-
type IZczjResponse
|
|
61
|
-
type ICardFromResponse
|
|
64
|
+
type IZczjResponse
|
|
62
65
|
};
|
|
66
|
+
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import _ from "lodash";
|
|
2
|
-
import { IPathResponse } from "./IPathResponse";
|
|
3
2
|
import { TCore } from "..";
|
|
3
|
+
import { IPathResponse } from "./IPathResponse";
|
|
4
4
|
|
|
5
5
|
export interface IUserLiteResponse {
|
|
6
6
|
whoBuild: number; //#用户实例
|
|
@@ -73,6 +73,8 @@ export interface IUserLiteResponse {
|
|
|
73
73
|
fromUserIndx: number; //#租户实例
|
|
74
74
|
fromSourceND: number; //#当前年度
|
|
75
75
|
fromDataType: number;
|
|
76
|
+
fromDataUses: string;
|
|
77
|
+
fromHeavyVal: number;
|
|
76
78
|
zbdwText: string;
|
|
77
79
|
/**数据分类文本 (作者|通讯作者) */
|
|
78
80
|
dataUses: string;
|
|
@@ -82,7 +84,7 @@ export interface IUserLiteResponse {
|
|
|
82
84
|
rankText: string;
|
|
83
85
|
userDeptText: string;
|
|
84
86
|
listPath: IPathResponse[];
|
|
85
|
-
listUserType: TCore.IDictResponse[]
|
|
87
|
+
listUserType: TCore.IDictResponse[];
|
|
86
88
|
|
|
87
89
|
}
|
|
88
90
|
|
|
@@ -160,11 +162,13 @@ export class TUserLiteResponse implements IUserLiteResponse {
|
|
|
160
162
|
fromWhoBuild: number = 0; // #租户实例
|
|
161
163
|
fromUserIndx: number = 0; // #租户实例
|
|
162
164
|
fromSourceND: number = 0; // #当前年度
|
|
165
|
+
fromDataType: number = 0;
|
|
166
|
+
fromDataUses: string = "";
|
|
167
|
+
fromHeavyVal: number = 0;
|
|
163
168
|
zbdwText: string = "";
|
|
164
169
|
/**数据分类文本 (作者|通讯作者) */
|
|
165
170
|
dataUses: string = "";
|
|
166
171
|
rankMain: number = 0;
|
|
167
|
-
fromDataType: number = 0;
|
|
168
172
|
/**排名名称 */
|
|
169
173
|
rankText: string = "";
|
|
170
174
|
userDeptText: string = "";
|