@ningboyz/types 1.2.168 → 1.2.169
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 +1 -1
- package/src/hzcb/IHzcbMainResponse.ts +2 -0
- package/src/hzcb/IHzcbNodeResponse.ts +51 -0
- package/src/hzcb/index.ts +4 -1
- package/src/hznj/IHznjBaseResponse.ts +32 -6
- package/src/hznj/IHznjDzqrResponse.ts +140 -0
- package/src/hznj/IHznjNotiBillResponse.ts +108 -0
- package/src/hznj/IHznjNotiResponse.ts +141 -0
- package/src/hznj/IHznjRwqxResponse.ts +140 -0
- package/src/hznj/IHznjXmjjItemResponse.ts +51 -0
- package/src/hznj/IHznjXmjjResponse.ts +142 -0
- package/src/hznj/IHznjXmsyResponse.ts +43 -13
- package/src/hznj/IHznjZblrBillResponse.ts +57 -0
- package/src/hznj/IHznjZblrResponse.ts +138 -0
- package/src/hznj/index.ts +33 -1
- package/src/hznk/IHznkBaseResponse.ts +9 -10
- package/src/hznk/IHznkDataResponse.ts +13 -18
- package/src/hznk/IHznkFydwResponse.ts +11 -15
- package/src/hznk/IHznkFytqResponse.ts +9 -13
- package/src/hznk/IHznkMainResponse.ts +11 -13
- package/src/hznk/IHznkNoteResponse.ts +5 -6
- package/src/hznk/IHznkXmysResponse.ts +9 -12
- package/src/hznk/IHznkYssqResponse.ts +7 -9
- package/src/hznk/index.ts +21 -9
package/package.json
CHANGED
|
@@ -120,6 +120,7 @@ export interface IHzcbMainResponse {
|
|
|
120
120
|
listPath: TCore.IPathResponse[];
|
|
121
121
|
/** 资金来源 */
|
|
122
122
|
listZJLY: THzcb.IHzcbZjlyResponse[];
|
|
123
|
+
listNode: THzcb.IHzcbNodeResponse[];
|
|
123
124
|
}
|
|
124
125
|
|
|
125
126
|
export class THzcbMainResponse implements IHzcbMainResponse {
|
|
@@ -260,4 +261,5 @@ export class THzcbMainResponse implements IHzcbMainResponse {
|
|
|
260
261
|
}
|
|
261
262
|
listPath: TCore.IPathResponse[] = [];
|
|
262
263
|
listZJLY: THzcb.IHzcbZjlyResponse[] = [];
|
|
264
|
+
listNode: THzcb.IHzcbNodeResponse[] = [];
|
|
263
265
|
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
export interface IHzcbNodeResponse {
|
|
2
|
+
whoBuild: number;
|
|
3
|
+
userIndx: number;
|
|
4
|
+
nodeIndx: number;
|
|
5
|
+
hzcbMain: number;
|
|
6
|
+
dataStat: number;
|
|
7
|
+
dataType: 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
|
+
nodeCode: string;
|
|
21
|
+
nodeName: string;
|
|
22
|
+
mjValue1: number;
|
|
23
|
+
nodeBlob: string;
|
|
24
|
+
nodeMemo: string;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export class THzcbNodeResponse implements IHzcbNodeResponse {
|
|
28
|
+
whoBuild: number = 0;
|
|
29
|
+
userIndx: number = 0;
|
|
30
|
+
nodeIndx: number = 0;
|
|
31
|
+
hzcbMain: number = 0;
|
|
32
|
+
dataStat: number = 0;
|
|
33
|
+
dataType: 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
|
+
nodeCode: string = "";
|
|
47
|
+
nodeName: string = "";
|
|
48
|
+
mjValue1: number = 0;
|
|
49
|
+
nodeBlob: string = "";
|
|
50
|
+
nodeMemo: string = "";
|
|
51
|
+
}
|
package/src/hzcb/index.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { IHzcbRypqResponse, THzcbRypqResponse } from "./IHzcbRypqResponse";
|
|
|
3
3
|
import { IHzcbXmtzResponse, THzcbXmtzResponse } from "./IHzcbXmtzResponse";
|
|
4
4
|
import { IHzcbXmykResponse, THzcbXmykResponse } from "./IHzcbXmykResponse";
|
|
5
5
|
import { IHzcbZjlyResponse, THzcbZjlyResponse } from "./IHzcbZjlyResponse";
|
|
6
|
+
import { IHzcbNodeResponse, THzcbNodeResponse } from "./IHzcbNodeResponse";
|
|
6
7
|
|
|
7
8
|
export {
|
|
8
9
|
THzcbMainResponse,
|
|
@@ -10,9 +11,11 @@ export {
|
|
|
10
11
|
THzcbXmtzResponse,
|
|
11
12
|
THzcbXmykResponse,
|
|
12
13
|
THzcbZjlyResponse,
|
|
14
|
+
THzcbNodeResponse,
|
|
13
15
|
type IHzcbMainResponse,
|
|
14
16
|
type IHzcbRypqResponse,
|
|
15
17
|
type IHzcbXmtzResponse,
|
|
16
18
|
type IHzcbXmykResponse,
|
|
17
|
-
type IHzcbZjlyResponse
|
|
19
|
+
type IHzcbZjlyResponse,
|
|
20
|
+
type IHzcbNodeResponse
|
|
18
21
|
};
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { IHznjBaseItemResponse } from "./IHznjBaseItemResponse";
|
|
1
|
+
import { THznj, TCore } from "..";
|
|
3
2
|
import _ from "lodash";
|
|
4
3
|
|
|
5
4
|
export interface IHznjBaseResponse {
|
|
@@ -60,9 +59,23 @@ export interface IHznjBaseResponse {
|
|
|
60
59
|
k8kmKmmc: string;
|
|
61
60
|
userMain: number;
|
|
62
61
|
|
|
62
|
+
|
|
63
|
+
coverURL: string;
|
|
64
|
+
touchURL: string;
|
|
65
|
+
unitText: string;
|
|
66
|
+
sourceDW: string;
|
|
67
|
+
|
|
68
|
+
lastDate: number;
|
|
69
|
+
lastTime: number;
|
|
70
|
+
flowStat: number;
|
|
71
|
+
didFirst: number;
|
|
72
|
+
lastMemo: string;
|
|
73
|
+
userName: string;
|
|
74
|
+
userGUID: string;
|
|
75
|
+
|
|
63
76
|
/**附件 */
|
|
64
|
-
listPath: IPathResponse[];
|
|
65
|
-
listItem: IHznjBaseItemResponse[];
|
|
77
|
+
listPath: TCore.IPathResponse[];
|
|
78
|
+
listItem: THznj.IHznjBaseItemResponse[];
|
|
66
79
|
}
|
|
67
80
|
|
|
68
81
|
export class THznjBaseResponse implements IHznjBaseResponse {
|
|
@@ -115,9 +128,22 @@ export class THznjBaseResponse implements IHznjBaseResponse {
|
|
|
115
128
|
k8kmKmid: number = 0;
|
|
116
129
|
k8kmKmmc: string = "";
|
|
117
130
|
userMain: number = 0;
|
|
131
|
+
|
|
132
|
+
coverURL: string = "";
|
|
133
|
+
touchURL: string = "";
|
|
134
|
+
unitText: string = "";
|
|
135
|
+
sourceDW: string = "";
|
|
136
|
+
|
|
137
|
+
lastDate: number = 0;
|
|
138
|
+
lastTime: number = 0;
|
|
139
|
+
flowStat: number = 0;
|
|
140
|
+
didFirst: number = 0;
|
|
141
|
+
lastMemo: string = "";
|
|
142
|
+
userName: string = "";
|
|
143
|
+
userGUID: string = "";
|
|
118
144
|
|
|
119
|
-
listPath: IPathResponse[] = [];
|
|
120
|
-
listItem: IHznjBaseItemResponse[] = [];
|
|
145
|
+
listPath: TCore.IPathResponse[] = [];
|
|
146
|
+
listItem: THznj.IHznjBaseItemResponse[] = [];
|
|
121
147
|
|
|
122
148
|
constructor(data: Partial<IHznjBaseResponse> = {}) {
|
|
123
149
|
if (data) {
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
import { THznj, TCore } from "..";
|
|
2
|
+
|
|
3
|
+
export interface IHznjDzqrResponse {
|
|
4
|
+
whoBuild: number;
|
|
5
|
+
userIndx: number;
|
|
6
|
+
dzqrIndx: number;
|
|
7
|
+
sourceID: number;
|
|
8
|
+
parentID: number;
|
|
9
|
+
hashCode: number;
|
|
10
|
+
dataLevl: number;
|
|
11
|
+
dataFrom: number;
|
|
12
|
+
kjndKJQJ: number;
|
|
13
|
+
dataStat: number;
|
|
14
|
+
dataOrdr: number;
|
|
15
|
+
dataDate: number;
|
|
16
|
+
dataType: number;
|
|
17
|
+
dataTime: number;
|
|
18
|
+
dataHide: number;
|
|
19
|
+
dataGUID: string;
|
|
20
|
+
userMain: number;
|
|
21
|
+
mastName: string;
|
|
22
|
+
mastGUID: string;
|
|
23
|
+
createBy: string;
|
|
24
|
+
createAt: number;
|
|
25
|
+
updateBy: string;
|
|
26
|
+
updateAt: number;
|
|
27
|
+
deleteBy: string;
|
|
28
|
+
deleteAt: number;
|
|
29
|
+
queuesBy: number;
|
|
30
|
+
entityID: string;
|
|
31
|
+
sourceND: number;
|
|
32
|
+
menuMain: number;
|
|
33
|
+
menuUUID: string;
|
|
34
|
+
unitMain: number;
|
|
35
|
+
deptMain: number;
|
|
36
|
+
sqyhText: string;
|
|
37
|
+
sqbmText: string;
|
|
38
|
+
flowUndo: number;
|
|
39
|
+
flowUser: string;
|
|
40
|
+
flowText: string;
|
|
41
|
+
wContact: string;
|
|
42
|
+
dContact: string;
|
|
43
|
+
/**申请日期 */
|
|
44
|
+
dzqrDate: number;
|
|
45
|
+
/**流程状态:(0:制单;1:送审;2:终审) */
|
|
46
|
+
dzqrStat: number;
|
|
47
|
+
/**单据类型:检验类型 */
|
|
48
|
+
dzqrType: number;
|
|
49
|
+
/**单据编号 */
|
|
50
|
+
dzqrCode: string;
|
|
51
|
+
/**单据名称 */
|
|
52
|
+
dzqrName: string;
|
|
53
|
+
/**申请用途 */
|
|
54
|
+
dzqrUses: string;
|
|
55
|
+
/**备注说明 */
|
|
56
|
+
dzqrMemo: string;
|
|
57
|
+
|
|
58
|
+
coverURL: string;
|
|
59
|
+
touchURL: string;
|
|
60
|
+
unitText: string;
|
|
61
|
+
sourceDW: string;
|
|
62
|
+
|
|
63
|
+
lastDate: number;
|
|
64
|
+
lastTime: number;
|
|
65
|
+
flowStat: number;
|
|
66
|
+
didFirst: number;
|
|
67
|
+
lastMemo: string;
|
|
68
|
+
userName: string;
|
|
69
|
+
userGUID: string;
|
|
70
|
+
|
|
71
|
+
/**附件 */
|
|
72
|
+
listPath: TCore.IPathResponse[];
|
|
73
|
+
/** 关联项目 */
|
|
74
|
+
listFrom: THznj.IHznjXmsyResponse[];
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export class THznjDzqrResponse implements IHznjDzqrResponse {
|
|
78
|
+
whoBuild: number = 0;
|
|
79
|
+
userIndx: number = 0;
|
|
80
|
+
dzqrIndx: number = 0;
|
|
81
|
+
sourceID: number = 0;
|
|
82
|
+
parentID: number = 0;
|
|
83
|
+
hashCode: number = 0;
|
|
84
|
+
dataLevl: number = 0;
|
|
85
|
+
dataFrom: number = 0;
|
|
86
|
+
kjndKJQJ: number = 0;
|
|
87
|
+
dataStat: number = 0;
|
|
88
|
+
dataOrdr: number = 0;
|
|
89
|
+
dataDate: number = 0;
|
|
90
|
+
dataType: number = 0;
|
|
91
|
+
dataTime: number = 0;
|
|
92
|
+
dataHide: number = 0;
|
|
93
|
+
dataGUID: string = "";
|
|
94
|
+
userMain: number = 0;
|
|
95
|
+
mastName: string = "";
|
|
96
|
+
mastGUID: string = "";
|
|
97
|
+
createBy: string = "";
|
|
98
|
+
createAt: number = 0;
|
|
99
|
+
updateBy: string = "";
|
|
100
|
+
updateAt: number = 0;
|
|
101
|
+
deleteBy: string = "";
|
|
102
|
+
deleteAt: number = 0;
|
|
103
|
+
queuesBy: number = 0;
|
|
104
|
+
entityID: string = "";
|
|
105
|
+
sourceND: number = 0;
|
|
106
|
+
menuMain: number = 0;
|
|
107
|
+
menuUUID: string = "";
|
|
108
|
+
unitMain: number = 0;
|
|
109
|
+
deptMain: number = 0;
|
|
110
|
+
sqyhText: string = "";
|
|
111
|
+
sqbmText: string = "";
|
|
112
|
+
flowUndo: number = 0;
|
|
113
|
+
flowUser: string = "";
|
|
114
|
+
flowText: string = "";
|
|
115
|
+
wContact: string = "";
|
|
116
|
+
dContact: string = "";
|
|
117
|
+
dzqrDate: number = 0;
|
|
118
|
+
dzqrStat: number = 0;
|
|
119
|
+
dzqrType: number = 0;
|
|
120
|
+
dzqrCode: string = "";
|
|
121
|
+
dzqrName: string = "";
|
|
122
|
+
dzqrUses: string = "";
|
|
123
|
+
dzqrMemo: string = "";
|
|
124
|
+
|
|
125
|
+
coverURL: string = "";
|
|
126
|
+
touchURL: string = "";
|
|
127
|
+
unitText: string = "";
|
|
128
|
+
sourceDW: string = "";
|
|
129
|
+
|
|
130
|
+
lastDate: number = 0;
|
|
131
|
+
lastTime: number = 0;
|
|
132
|
+
flowStat: number = 0;
|
|
133
|
+
didFirst: number = 0;
|
|
134
|
+
lastMemo: string = "";
|
|
135
|
+
userName: string = "";
|
|
136
|
+
userGUID: string = "";
|
|
137
|
+
|
|
138
|
+
listPath: TCore.IPathResponse[] = [];
|
|
139
|
+
listFrom: THznj.IHznjXmsyResponse[] = [];
|
|
140
|
+
}
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
export interface IHznjNotiBillResponse {
|
|
2
|
+
whoBuild: number;
|
|
3
|
+
userIndx: number;
|
|
4
|
+
notiIndx: number;
|
|
5
|
+
idEntity: number;
|
|
6
|
+
sourceID: number;
|
|
7
|
+
parentID: number;
|
|
8
|
+
hashCode: number;
|
|
9
|
+
dataLevl: number;
|
|
10
|
+
dataFrom: number;
|
|
11
|
+
kjndKJQJ: number;
|
|
12
|
+
dataStat: number;
|
|
13
|
+
dataOrdr: number;
|
|
14
|
+
dataDate: number;
|
|
15
|
+
dataType: number;
|
|
16
|
+
dataTime: number;
|
|
17
|
+
dataHide: number;
|
|
18
|
+
dataGUID: string;
|
|
19
|
+
userMain: number;
|
|
20
|
+
mastName: string;
|
|
21
|
+
mastGUID: string;
|
|
22
|
+
createBy: string;
|
|
23
|
+
createAt: number;
|
|
24
|
+
updateBy: string;
|
|
25
|
+
updateAt: number;
|
|
26
|
+
deleteBy: string;
|
|
27
|
+
deleteAt: number;
|
|
28
|
+
queuesBy: number;
|
|
29
|
+
entityID: string;
|
|
30
|
+
sourceND: number;
|
|
31
|
+
menuMain: number;
|
|
32
|
+
menuUUID: string;
|
|
33
|
+
unitMain: number;
|
|
34
|
+
deptMain: number;
|
|
35
|
+
sqyhText: string;
|
|
36
|
+
sqbmText: string;
|
|
37
|
+
flowUndo: number;
|
|
38
|
+
flowUser: string;
|
|
39
|
+
flowText: string;
|
|
40
|
+
/**申请日期 */
|
|
41
|
+
billDate: number;
|
|
42
|
+
/**流程状态:(0:制单;1:送审;2:终审) */
|
|
43
|
+
billStat: number;
|
|
44
|
+
/**单据类型:检验类型 */
|
|
45
|
+
billType: number;
|
|
46
|
+
/**单据编号 */
|
|
47
|
+
billCode: string;
|
|
48
|
+
/**单据名称 */
|
|
49
|
+
billName: string;
|
|
50
|
+
/**申请用途 */
|
|
51
|
+
billUses: string;
|
|
52
|
+
/**备注说明 */
|
|
53
|
+
billMemo: string;
|
|
54
|
+
fromWhoBuild: number;
|
|
55
|
+
fromUserIndx: number;
|
|
56
|
+
fromXmjjItem: number;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export class THznjNotiBillResponse implements IHznjNotiBillResponse {
|
|
60
|
+
whoBuild: number = 0;
|
|
61
|
+
userIndx: number = 0;
|
|
62
|
+
notiIndx: number = 0;
|
|
63
|
+
idEntity: number = 0;
|
|
64
|
+
sourceID: number = 0;
|
|
65
|
+
parentID: number = 0;
|
|
66
|
+
hashCode: number = 0;
|
|
67
|
+
dataLevl: number = 0;
|
|
68
|
+
dataFrom: number = 0;
|
|
69
|
+
kjndKJQJ: number = 0;
|
|
70
|
+
dataStat: number = 0;
|
|
71
|
+
dataOrdr: number = 0;
|
|
72
|
+
dataDate: number = 0;
|
|
73
|
+
dataType: number = 0;
|
|
74
|
+
dataTime: number = 0;
|
|
75
|
+
dataHide: number = 0;
|
|
76
|
+
dataGUID: string = "";
|
|
77
|
+
userMain: number = 0;
|
|
78
|
+
mastName: string = "";
|
|
79
|
+
mastGUID: string = "";
|
|
80
|
+
createBy: string = "";
|
|
81
|
+
createAt: number = 0;
|
|
82
|
+
updateBy: string = "";
|
|
83
|
+
updateAt: number = 0;
|
|
84
|
+
deleteBy: string = "";
|
|
85
|
+
deleteAt: number = 0;
|
|
86
|
+
queuesBy: number = 0;
|
|
87
|
+
entityID: string = "";
|
|
88
|
+
sourceND: number = 0;
|
|
89
|
+
menuMain: number = 0;
|
|
90
|
+
menuUUID: string = "";
|
|
91
|
+
unitMain: number = 0;
|
|
92
|
+
deptMain: number = 0;
|
|
93
|
+
sqyhText: string = "";
|
|
94
|
+
sqbmText: string = "";
|
|
95
|
+
flowUndo: number = 0;
|
|
96
|
+
flowUser: string = "";
|
|
97
|
+
flowText: string = "";
|
|
98
|
+
billDate: number = 0;
|
|
99
|
+
billStat: number = 0;
|
|
100
|
+
billType: number = 0;
|
|
101
|
+
billCode: string = "";
|
|
102
|
+
billName: string = "";
|
|
103
|
+
billUses: string = "";
|
|
104
|
+
billMemo: string = "";
|
|
105
|
+
fromWhoBuild: number = 0;
|
|
106
|
+
fromUserIndx: number = 0;
|
|
107
|
+
fromXmjjItem: number = 0;
|
|
108
|
+
}
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
import { THznj } from "..";
|
|
2
|
+
|
|
3
|
+
export interface IHznjNotiResponse {
|
|
4
|
+
whoBuild: number;
|
|
5
|
+
userIndx: number;
|
|
6
|
+
notiIndx: number;
|
|
7
|
+
sourceID: number;
|
|
8
|
+
parentID: number;
|
|
9
|
+
hashCode: number;
|
|
10
|
+
dataLevl: number;
|
|
11
|
+
dataFrom: number;
|
|
12
|
+
kjndKJQJ: number;
|
|
13
|
+
dataStat: number;
|
|
14
|
+
dataOrdr: number;
|
|
15
|
+
dataDate: number;
|
|
16
|
+
dataType: number;
|
|
17
|
+
dataTime: number;
|
|
18
|
+
dataHide: number;
|
|
19
|
+
dataGUID: string;
|
|
20
|
+
userMain: number;
|
|
21
|
+
mastName: string;
|
|
22
|
+
mastGUID: string;
|
|
23
|
+
createBy: string;
|
|
24
|
+
createAt: number;
|
|
25
|
+
updateBy: string;
|
|
26
|
+
updateAt: number;
|
|
27
|
+
deleteBy: string;
|
|
28
|
+
deleteAt: number;
|
|
29
|
+
queuesBy: number;
|
|
30
|
+
entityID: string;
|
|
31
|
+
sourceND: number;
|
|
32
|
+
menuMain: number;
|
|
33
|
+
menuUUID: string;
|
|
34
|
+
unitMain: number;
|
|
35
|
+
deptMain: number;
|
|
36
|
+
sqyhText: string;
|
|
37
|
+
sqbmText: string;
|
|
38
|
+
flowUndo: number;
|
|
39
|
+
flowUser: string;
|
|
40
|
+
flowText: string;
|
|
41
|
+
wContact: string;
|
|
42
|
+
dContact: string;
|
|
43
|
+
/**申请日期 */
|
|
44
|
+
notiDate: number;
|
|
45
|
+
/**流程状态:(0:制单;1:送审;2:终审) */
|
|
46
|
+
notiStat: number;
|
|
47
|
+
/**单据类型:检验类型 */
|
|
48
|
+
notiType: number;
|
|
49
|
+
/**单据编号 */
|
|
50
|
+
notiCode: string;
|
|
51
|
+
/**单据名称 */
|
|
52
|
+
notiName: string;
|
|
53
|
+
/**申请用途 */
|
|
54
|
+
notiUses: string;
|
|
55
|
+
/**备注说明 */
|
|
56
|
+
notiMemo: string;
|
|
57
|
+
/**子单数量 */
|
|
58
|
+
billSize: number;
|
|
59
|
+
|
|
60
|
+
coverURL: string;
|
|
61
|
+
touchURL: string;
|
|
62
|
+
unitText: string;
|
|
63
|
+
sourceDW: string;
|
|
64
|
+
|
|
65
|
+
lastDate: number;
|
|
66
|
+
lastTime: number;
|
|
67
|
+
flowStat: number;
|
|
68
|
+
didFirst: number;
|
|
69
|
+
lastMemo: string;
|
|
70
|
+
userName: string;
|
|
71
|
+
userGUID: string;
|
|
72
|
+
|
|
73
|
+
/**任务通知.拆分 */
|
|
74
|
+
listBill: THznj.IHznjNotiBillResponse[];
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export class THznjNotiResponse implements IHznjNotiResponse {
|
|
78
|
+
whoBuild: number = 0;
|
|
79
|
+
userIndx: number = 0;
|
|
80
|
+
notiIndx: number = 0;
|
|
81
|
+
sourceID: number = 0;
|
|
82
|
+
parentID: number = 0;
|
|
83
|
+
hashCode: number = 0;
|
|
84
|
+
dataLevl: number = 0;
|
|
85
|
+
dataFrom: number = 0;
|
|
86
|
+
kjndKJQJ: number = 0;
|
|
87
|
+
dataStat: number = 0;
|
|
88
|
+
dataOrdr: number = 0;
|
|
89
|
+
dataDate: number = 0;
|
|
90
|
+
dataType: number = 0;
|
|
91
|
+
dataTime: number = 0;
|
|
92
|
+
dataHide: number = 0;
|
|
93
|
+
dataGUID: string = "";
|
|
94
|
+
userMain: number = 0;
|
|
95
|
+
mastName: string = "";
|
|
96
|
+
mastGUID: string = "";
|
|
97
|
+
createBy: string = "";
|
|
98
|
+
createAt: number = 0;
|
|
99
|
+
updateBy: string = "";
|
|
100
|
+
updateAt: number = 0;
|
|
101
|
+
deleteBy: string = "";
|
|
102
|
+
deleteAt: number = 0;
|
|
103
|
+
queuesBy: number = 0;
|
|
104
|
+
entityID: string = "";
|
|
105
|
+
sourceND: number = 0;
|
|
106
|
+
menuMain: number = 0;
|
|
107
|
+
menuUUID: string = "";
|
|
108
|
+
unitMain: number = 0;
|
|
109
|
+
deptMain: number = 0;
|
|
110
|
+
sqyhText: string = "";
|
|
111
|
+
sqbmText: string = "";
|
|
112
|
+
flowUndo: number = 0;
|
|
113
|
+
flowUser: string = "";
|
|
114
|
+
flowText: string = "";
|
|
115
|
+
wContact: string = "";
|
|
116
|
+
dContact: string = "";
|
|
117
|
+
notiDate: number = 0;
|
|
118
|
+
notiStat: number = 0;
|
|
119
|
+
notiType: number = 0;
|
|
120
|
+
notiCode: string = "";
|
|
121
|
+
notiName: string = "";
|
|
122
|
+
notiUses: string = "";
|
|
123
|
+
notiMemo: string = "";
|
|
124
|
+
billSize: number = 0;
|
|
125
|
+
|
|
126
|
+
coverURL: string = "";
|
|
127
|
+
touchURL: string = "";
|
|
128
|
+
unitText: string = "";
|
|
129
|
+
sourceDW: string = "";
|
|
130
|
+
|
|
131
|
+
lastDate: number = 0;
|
|
132
|
+
lastTime: number = 0;
|
|
133
|
+
flowStat: number = 0;
|
|
134
|
+
didFirst: number = 0;
|
|
135
|
+
lastMemo: string = "";
|
|
136
|
+
userName: string = "";
|
|
137
|
+
userGUID: string = "";
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
listBill: THznj.IHznjNotiBillResponse[] = [];
|
|
141
|
+
}
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
import { THznj, TCore } from "..";
|
|
2
|
+
|
|
3
|
+
export interface IHznjRwqxResponse {
|
|
4
|
+
whoBuild: number;
|
|
5
|
+
userIndx: number;
|
|
6
|
+
rwqxIndx: number;
|
|
7
|
+
sourceID: number;
|
|
8
|
+
parentID: number;
|
|
9
|
+
hashCode: number;
|
|
10
|
+
dataLevl: number;
|
|
11
|
+
dataFrom: number;
|
|
12
|
+
kjndKJQJ: number;
|
|
13
|
+
dataStat: number;
|
|
14
|
+
dataOrdr: number;
|
|
15
|
+
dataDate: number;
|
|
16
|
+
dataType: number;
|
|
17
|
+
dataTime: number;
|
|
18
|
+
dataHide: number;
|
|
19
|
+
dataGUID: string;
|
|
20
|
+
userMain: number;
|
|
21
|
+
mastName: string;
|
|
22
|
+
mastGUID: string;
|
|
23
|
+
createBy: string;
|
|
24
|
+
createAt: number;
|
|
25
|
+
updateBy: string;
|
|
26
|
+
updateAt: number;
|
|
27
|
+
deleteBy: string;
|
|
28
|
+
deleteAt: number;
|
|
29
|
+
queuesBy: number;
|
|
30
|
+
entityID: string;
|
|
31
|
+
sourceND: number;
|
|
32
|
+
menuMain: number;
|
|
33
|
+
menuUUID: string;
|
|
34
|
+
unitMain: number;
|
|
35
|
+
deptMain: number;
|
|
36
|
+
sqyhText: string;
|
|
37
|
+
sqbmText: string;
|
|
38
|
+
flowUndo: number;
|
|
39
|
+
flowUser: string;
|
|
40
|
+
flowText: string;
|
|
41
|
+
wContact: string;
|
|
42
|
+
dContact: string;
|
|
43
|
+
/**申请日期 */
|
|
44
|
+
rwqxDate: number;
|
|
45
|
+
/**流程状态:(0:制单;1:送审;2:终审) */
|
|
46
|
+
rwqxStat: number;
|
|
47
|
+
/**单据类型:检验类型 */
|
|
48
|
+
rwqxType: number;
|
|
49
|
+
/**单据编号 */
|
|
50
|
+
rwqxCode: string;
|
|
51
|
+
/**单据名称 */
|
|
52
|
+
rwqxName: string;
|
|
53
|
+
/**申请用途 */
|
|
54
|
+
rwqxUses: string;
|
|
55
|
+
/**备注说明 */
|
|
56
|
+
rwqxMemo: string;
|
|
57
|
+
|
|
58
|
+
coverURL: string;
|
|
59
|
+
touchURL: string;
|
|
60
|
+
unitText: string;
|
|
61
|
+
sourceDW: string;
|
|
62
|
+
|
|
63
|
+
lastDate: number;
|
|
64
|
+
lastTime: number;
|
|
65
|
+
flowStat: number;
|
|
66
|
+
didFirst: number;
|
|
67
|
+
lastMemo: string;
|
|
68
|
+
userName: string;
|
|
69
|
+
userGUID: string;
|
|
70
|
+
|
|
71
|
+
/**附件 */
|
|
72
|
+
listPath: TCore.IPathResponse[];
|
|
73
|
+
/** 关联项目 */
|
|
74
|
+
listFrom: THznj.IHznjXmsyResponse[];
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export class THznjRwqxResponse implements IHznjRwqxResponse {
|
|
78
|
+
whoBuild: number = 0;
|
|
79
|
+
userIndx: number = 0;
|
|
80
|
+
rwqxIndx: number = 0;
|
|
81
|
+
sourceID: number = 0;
|
|
82
|
+
parentID: number = 0;
|
|
83
|
+
hashCode: number = 0;
|
|
84
|
+
dataLevl: number = 0;
|
|
85
|
+
dataFrom: number = 0;
|
|
86
|
+
kjndKJQJ: number = 0;
|
|
87
|
+
dataStat: number = 0;
|
|
88
|
+
dataOrdr: number = 0;
|
|
89
|
+
dataDate: number = 0;
|
|
90
|
+
dataType: number = 0;
|
|
91
|
+
dataTime: number = 0;
|
|
92
|
+
dataHide: number = 0;
|
|
93
|
+
dataGUID: string = "";
|
|
94
|
+
userMain: number = 0;
|
|
95
|
+
mastName: string = "";
|
|
96
|
+
mastGUID: string = "";
|
|
97
|
+
createBy: string = "";
|
|
98
|
+
createAt: number = 0;
|
|
99
|
+
updateBy: string = "";
|
|
100
|
+
updateAt: number = 0;
|
|
101
|
+
deleteBy: string = "";
|
|
102
|
+
deleteAt: number = 0;
|
|
103
|
+
queuesBy: number = 0;
|
|
104
|
+
entityID: string = "";
|
|
105
|
+
sourceND: number = 0;
|
|
106
|
+
menuMain: number = 0;
|
|
107
|
+
menuUUID: string = "";
|
|
108
|
+
unitMain: number = 0;
|
|
109
|
+
deptMain: number = 0;
|
|
110
|
+
sqyhText: string = "";
|
|
111
|
+
sqbmText: string = "";
|
|
112
|
+
flowUndo: number = 0;
|
|
113
|
+
flowUser: string = "";
|
|
114
|
+
flowText: string = "";
|
|
115
|
+
wContact: string = "";
|
|
116
|
+
dContact: string = "";
|
|
117
|
+
rwqxDate: number = 0;
|
|
118
|
+
rwqxStat: number = 0;
|
|
119
|
+
rwqxType: number = 0;
|
|
120
|
+
rwqxCode: string = "";
|
|
121
|
+
rwqxName: string = "";
|
|
122
|
+
rwqxUses: string = "";
|
|
123
|
+
rwqxMemo: string = "";
|
|
124
|
+
|
|
125
|
+
coverURL: string = "";
|
|
126
|
+
touchURL: string = "";
|
|
127
|
+
unitText: string = "";
|
|
128
|
+
sourceDW: string = "";
|
|
129
|
+
|
|
130
|
+
lastDate: number = 0;
|
|
131
|
+
lastTime: number = 0;
|
|
132
|
+
flowStat: number = 0;
|
|
133
|
+
didFirst: number = 0;
|
|
134
|
+
lastMemo: string = "";
|
|
135
|
+
userName: string = "";
|
|
136
|
+
userGUID: string = "";
|
|
137
|
+
|
|
138
|
+
listPath: TCore.IPathResponse[] = [];
|
|
139
|
+
listFrom: THznj.IHznjXmsyResponse[] = [];
|
|
140
|
+
}
|