@ningboyz/types 1.2.179 → 1.2.181
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/core/IUserLiteResponse.ts +2 -0
- package/src/hzcb/IHzcbNdjhBillResponse.ts +71 -0
- package/src/hzcb/IHzcbNdjhResponse.ts +131 -0
- package/src/hzcb/index.ts +8 -1
- package/src/hznj/IHznjDzqrResponse.ts +6 -0
- package/src/hznj/IHznjNotiResponse.ts +5 -1
- package/src/hznj/IHznjXmsyCjdwResponse.ts +2 -2
- package/src/hznj/IHznjXmsyWtdwResponse.ts +6 -3
- package/src/hznj/IHznjZbczBillResponse.ts +55 -0
- package/src/hznj/IHznjZbczResponse.ts +142 -0
- package/src/hznj/IHznjZbjgBillResponse.ts +85 -0
- package/src/hznj/IHznjZbjgResponse.ts +142 -0
- package/src/hznj/IHznjZblyBillResponse.ts +58 -0
- package/src/hznj/IHznjZblyResponse.ts +142 -0
- package/src/hznj/IHznjZbthBillResponse.ts +55 -0
- package/src/hznj/IHznjZbthResponse.ts +142 -0
- package/src/hznj/index.ts +28 -2
- package/src/hznk/IHznkFytqResponse.ts +2 -0
package/package.json
CHANGED
|
@@ -49,6 +49,7 @@ export interface IUserLiteResponse {
|
|
|
49
49
|
acnoYhzh: string; //#银行账号
|
|
50
50
|
acnoKhyh: string; //#开户银行
|
|
51
51
|
acnoTypeText: string;
|
|
52
|
+
aplMoney: number;
|
|
52
53
|
|
|
53
54
|
userIdcd: string;
|
|
54
55
|
|
|
@@ -120,6 +121,7 @@ export class TUserLiteResponse implements IUserLiteResponse {
|
|
|
120
121
|
acnoYhzh: string = ""; //#银行账号
|
|
121
122
|
acnoKhyh: string = ""; //#开户银行
|
|
122
123
|
acnoTypeText: string = "";
|
|
124
|
+
aplMoney: number = 0;
|
|
123
125
|
|
|
124
126
|
userIdcd: string = "";
|
|
125
127
|
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
export interface IHzcbNdjhBillResponse {
|
|
2
|
+
whoBuild: number;
|
|
3
|
+
userIndx: number;
|
|
4
|
+
ndjhIndx: number;
|
|
5
|
+
idEntity: number;
|
|
6
|
+
dataStat: number;
|
|
7
|
+
dataHide: number;
|
|
8
|
+
dataOrdr: number;
|
|
9
|
+
dataFrom: number;
|
|
10
|
+
dataDate: number;
|
|
11
|
+
dataTime: number;
|
|
12
|
+
createBy: string;
|
|
13
|
+
createAt: number;
|
|
14
|
+
updateBy: string;
|
|
15
|
+
updateAt: number;
|
|
16
|
+
deleteBy: string;
|
|
17
|
+
deleteAt: number;
|
|
18
|
+
queuesBy: number;
|
|
19
|
+
zsldText: string;
|
|
20
|
+
jhnrText: string;
|
|
21
|
+
hznkMain: number;
|
|
22
|
+
hznkName: string;
|
|
23
|
+
chargeBy: string;
|
|
24
|
+
startDay: number;
|
|
25
|
+
endedDay: number;
|
|
26
|
+
startKdq: number;
|
|
27
|
+
endedKdq: number;
|
|
28
|
+
kdztMain: number;
|
|
29
|
+
kdztText: string;
|
|
30
|
+
qtmbText: string;
|
|
31
|
+
fromWhoBuild: number;
|
|
32
|
+
fromUserIndx: number;
|
|
33
|
+
fromHzcbIndx: number;
|
|
34
|
+
fromNodeIndx: number;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export class THzcbNdjhBillResponse implements IHzcbNdjhBillResponse {
|
|
38
|
+
whoBuild: number = 0;
|
|
39
|
+
userIndx: number = 0;
|
|
40
|
+
ndjhIndx: number = 0;
|
|
41
|
+
idEntity: number = 0;
|
|
42
|
+
dataStat: number = 0;
|
|
43
|
+
dataHide: number = 0;
|
|
44
|
+
dataOrdr: number = 0;
|
|
45
|
+
dataFrom: number = 0;
|
|
46
|
+
dataDate: number = 0;
|
|
47
|
+
dataTime: number = 0;
|
|
48
|
+
createBy: string = "";
|
|
49
|
+
createAt: number = 0;
|
|
50
|
+
updateBy: string = "";
|
|
51
|
+
updateAt: number = 0;
|
|
52
|
+
deleteBy: string = "";
|
|
53
|
+
deleteAt: number = 0;
|
|
54
|
+
queuesBy: number = 0;
|
|
55
|
+
zsldText: string = "";
|
|
56
|
+
jhnrText: string = "";
|
|
57
|
+
hznkMain: number = 0;
|
|
58
|
+
hznkName: string = "";
|
|
59
|
+
chargeBy: string = "";
|
|
60
|
+
startDay: number = 0;
|
|
61
|
+
endedDay: number = 0;
|
|
62
|
+
startKdq: number = 0;
|
|
63
|
+
endedKdq: number = 0;
|
|
64
|
+
kdztMain: number = 0;
|
|
65
|
+
kdztText: string = "";
|
|
66
|
+
qtmbText: string = "";
|
|
67
|
+
fromWhoBuild: number = 0;
|
|
68
|
+
fromUserIndx: number = 0;
|
|
69
|
+
fromHzcbIndx: number = 0;
|
|
70
|
+
fromNodeIndx: number = 0;
|
|
71
|
+
}
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
import { THzcb, TCore } from "..";
|
|
2
|
+
|
|
3
|
+
export interface IHzcbNdjhResponse {
|
|
4
|
+
whoBuild: number;
|
|
5
|
+
userIndx: number;
|
|
6
|
+
ndjhIndx: number;
|
|
7
|
+
parentID: number;
|
|
8
|
+
hashCode: number;
|
|
9
|
+
dataLevl: number;
|
|
10
|
+
dataFrom: number;
|
|
11
|
+
kjndKJQJ: number;
|
|
12
|
+
dataStat: number;
|
|
13
|
+
dataOrdr: number;
|
|
14
|
+
dataHide: number;
|
|
15
|
+
dataType: number;
|
|
16
|
+
dataDate: number;
|
|
17
|
+
dataTime: number;
|
|
18
|
+
dataGUID: string;
|
|
19
|
+
mastName: string;
|
|
20
|
+
mastGUID: string;
|
|
21
|
+
userMain: number;
|
|
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
|
+
unitMain: number;
|
|
32
|
+
deptMain: number;
|
|
33
|
+
flowUndo: number;
|
|
34
|
+
flowUser: string;
|
|
35
|
+
flowText: string;
|
|
36
|
+
menuMain: number;
|
|
37
|
+
menuUUID: string;
|
|
38
|
+
sqbmText: string;
|
|
39
|
+
sqyhText: string;
|
|
40
|
+
ndjhDate: number;
|
|
41
|
+
ndjhStat: number;
|
|
42
|
+
ndjhType: number;
|
|
43
|
+
ndjhCode: string;
|
|
44
|
+
ndjhName: string;
|
|
45
|
+
ndjhUses: string;
|
|
46
|
+
hzcbName: string;
|
|
47
|
+
ndjhMemo: string;
|
|
48
|
+
|
|
49
|
+
coverURL: string;
|
|
50
|
+
touchURL: string;
|
|
51
|
+
unitText: string;
|
|
52
|
+
sourceDW: string;
|
|
53
|
+
|
|
54
|
+
lastDate: number;
|
|
55
|
+
lastTime: number;
|
|
56
|
+
flowStat: number;
|
|
57
|
+
didFirst: number;
|
|
58
|
+
lastMemo: string;
|
|
59
|
+
userName: string;
|
|
60
|
+
userGUID: string;
|
|
61
|
+
|
|
62
|
+
/**附件 */
|
|
63
|
+
listPath: TCore.IPathResponse[];
|
|
64
|
+
listBill: THzcb.IHzcbNdjhBillResponse[];
|
|
65
|
+
/** 关联结果 */
|
|
66
|
+
listFrom: THzcb.IHzcbMainResponse[];
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
export class THzcbNdjhResponse implements IHzcbNdjhResponse {
|
|
70
|
+
whoBuild: number = 0;
|
|
71
|
+
userIndx: number = 0;
|
|
72
|
+
ndjhIndx: number = 0;
|
|
73
|
+
parentID: number = 0;
|
|
74
|
+
hashCode: number = 0;
|
|
75
|
+
dataLevl: number = 0;
|
|
76
|
+
dataFrom: number = 0;
|
|
77
|
+
kjndKJQJ: number = 0;
|
|
78
|
+
dataStat: number = 0;
|
|
79
|
+
dataOrdr: number = 0;
|
|
80
|
+
dataHide: number = 0;
|
|
81
|
+
dataType: number = 0;
|
|
82
|
+
dataDate: number = 0;
|
|
83
|
+
dataTime: number = 0;
|
|
84
|
+
dataGUID: string = "";
|
|
85
|
+
mastName: string = "";
|
|
86
|
+
mastGUID: string = "";
|
|
87
|
+
userMain: number = 0;
|
|
88
|
+
createBy: string = "";
|
|
89
|
+
createAt: number = 0;
|
|
90
|
+
updateBy: string = "";
|
|
91
|
+
updateAt: number = 0;
|
|
92
|
+
deleteBy: string = "";
|
|
93
|
+
deleteAt: number = 0;
|
|
94
|
+
queuesBy: number = 0;
|
|
95
|
+
entityID: string = "";
|
|
96
|
+
sourceND: number = 0;
|
|
97
|
+
unitMain: number = 0;
|
|
98
|
+
deptMain: number = 0;
|
|
99
|
+
flowUndo: number = 0;
|
|
100
|
+
flowUser: string = "";
|
|
101
|
+
flowText: string = "";
|
|
102
|
+
menuMain: number = 0;
|
|
103
|
+
menuUUID: string = "";
|
|
104
|
+
sqbmText: string = "";
|
|
105
|
+
sqyhText: string = "";
|
|
106
|
+
ndjhDate: number = 0;
|
|
107
|
+
ndjhStat: number = 0;
|
|
108
|
+
ndjhType: number = 0;
|
|
109
|
+
ndjhCode: string = "";
|
|
110
|
+
ndjhName: string = "";
|
|
111
|
+
ndjhUses: string = "";
|
|
112
|
+
hzcbName: string = "";
|
|
113
|
+
ndjhMemo: string = "";
|
|
114
|
+
|
|
115
|
+
coverURL: string = "";
|
|
116
|
+
touchURL: string = "";
|
|
117
|
+
unitText: string = "";
|
|
118
|
+
sourceDW: string = "";
|
|
119
|
+
|
|
120
|
+
lastDate: number = 0;
|
|
121
|
+
lastTime: number = 0;
|
|
122
|
+
flowStat: number = 0;
|
|
123
|
+
didFirst: number = 0;
|
|
124
|
+
lastMemo: string = "";
|
|
125
|
+
userName: string = "";
|
|
126
|
+
userGUID: string = "";
|
|
127
|
+
|
|
128
|
+
listPath: TCore.IPathResponse[] = [];
|
|
129
|
+
listBill: THzcb.IHzcbNdjhBillResponse[] = [];
|
|
130
|
+
listFrom: THzcb.IHzcbMainResponse[] = [];
|
|
131
|
+
}
|
package/src/hzcb/index.ts
CHANGED
|
@@ -4,6 +4,9 @@ import { IHzcbXmtzResponse, THzcbXmtzResponse } from "./IHzcbXmtzResponse";
|
|
|
4
4
|
import { IHzcbXmykResponse, THzcbXmykResponse } from "./IHzcbXmykResponse";
|
|
5
5
|
import { IHzcbZjlyResponse, THzcbZjlyResponse } from "./IHzcbZjlyResponse";
|
|
6
6
|
import { IHzcbNodeResponse, THzcbNodeResponse } from "./IHzcbNodeResponse";
|
|
7
|
+
//#ndjh
|
|
8
|
+
import { IHzcbNdjhResponse, THzcbNdjhResponse } from "./IHzcbNdjhResponse";
|
|
9
|
+
import { IHzcbNdjhBillResponse, THzcbNdjhBillResponse } from "./IHzcbNdjhBillResponse";
|
|
7
10
|
|
|
8
11
|
export {
|
|
9
12
|
THzcbMainResponse,
|
|
@@ -12,10 +15,14 @@ export {
|
|
|
12
15
|
THzcbXmykResponse,
|
|
13
16
|
THzcbZjlyResponse,
|
|
14
17
|
THzcbNodeResponse,
|
|
18
|
+
THzcbNdjhResponse,
|
|
19
|
+
THzcbNdjhBillResponse,
|
|
15
20
|
type IHzcbMainResponse,
|
|
16
21
|
type IHzcbRypqResponse,
|
|
17
22
|
type IHzcbXmtzResponse,
|
|
18
23
|
type IHzcbXmykResponse,
|
|
19
24
|
type IHzcbZjlyResponse,
|
|
20
|
-
type IHzcbNodeResponse
|
|
25
|
+
type IHzcbNodeResponse,
|
|
26
|
+
type IHzcbNdjhResponse,
|
|
27
|
+
type IHzcbNdjhBillResponse
|
|
21
28
|
};
|
|
@@ -56,6 +56,10 @@ export interface IHznjDzqrResponse {
|
|
|
56
56
|
dzqrUses: string;
|
|
57
57
|
/**备注说明 */
|
|
58
58
|
dzqrMemo: string;
|
|
59
|
+
/**支付总额 */
|
|
60
|
+
payTotal: number;
|
|
61
|
+
/**到账金额 */
|
|
62
|
+
dzMoney1: number;
|
|
59
63
|
|
|
60
64
|
coverURL: string;
|
|
61
65
|
touchURL: string;
|
|
@@ -125,6 +129,8 @@ export class THznjDzqrResponse implements IHznjDzqrResponse {
|
|
|
125
129
|
dzqrName: string = "";
|
|
126
130
|
dzqrUses: string = "";
|
|
127
131
|
dzqrMemo: string = "";
|
|
132
|
+
payTotal: number = 0;
|
|
133
|
+
dzMoney1: number = 0;
|
|
128
134
|
|
|
129
135
|
coverURL: string = "";
|
|
130
136
|
touchURL: string = "";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {THznj} from "..";
|
|
1
|
+
import {THznj, TCore} from "..";
|
|
2
2
|
import _ from "lodash";
|
|
3
3
|
import {TFlowDataResponse} from "../flow";
|
|
4
4
|
|
|
@@ -76,6 +76,8 @@ export interface IHznjNotiResponse {
|
|
|
76
76
|
|
|
77
77
|
/**任务通知.拆分 */
|
|
78
78
|
listBill: THznj.IHznjNotiBillResponse[];
|
|
79
|
+
listCJBM: TCore.IDeptResponse[];
|
|
80
|
+
listFrom: THznj.IHznjXmjjResponse[];
|
|
79
81
|
}
|
|
80
82
|
|
|
81
83
|
export class THznjNotiResponse implements IHznjNotiResponse {
|
|
@@ -144,6 +146,8 @@ export class THznjNotiResponse implements IHznjNotiResponse {
|
|
|
144
146
|
|
|
145
147
|
|
|
146
148
|
listBill: THznj.IHznjNotiBillResponse[] = [];
|
|
149
|
+
listCJBM: TCore.IDeptResponse[] = [];
|
|
150
|
+
listFrom: THznj.IHznjXmjjResponse[] = [];
|
|
147
151
|
|
|
148
152
|
constructor(data: Partial<IHznjNotiResponse> = {}) {
|
|
149
153
|
if (data) {
|
|
@@ -21,7 +21,7 @@ export interface IHznjXmsyCjdwResponse {
|
|
|
21
21
|
/**检验类型 */
|
|
22
22
|
jylbMain: number;
|
|
23
23
|
/**检验类型名称 */
|
|
24
|
-
jylbText:
|
|
24
|
+
jylbText: string;
|
|
25
25
|
/**关联 hznj_base主键 */
|
|
26
26
|
hznjBase: number;
|
|
27
27
|
/**样品编号 */
|
|
@@ -67,7 +67,7 @@ export class THznjXmsyCjdwResponse implements IHznjXmsyCjdwResponse {
|
|
|
67
67
|
deleteAt: number = 0;
|
|
68
68
|
queuesBy: number = 0;
|
|
69
69
|
jylbMain: number = 0;
|
|
70
|
-
jylbText:
|
|
70
|
+
jylbText: string = "";
|
|
71
71
|
hznjBase: number = 0;
|
|
72
72
|
baseCode: string = "";
|
|
73
73
|
paperCnt: number = 0;
|
|
@@ -28,11 +28,11 @@ export interface IHznjXmsyWtdwResponse {
|
|
|
28
28
|
postCode: string;
|
|
29
29
|
/**生产单位 */
|
|
30
30
|
ccdwText: string;
|
|
31
|
-
|
|
31
|
+
/**--受检单位 --选择[用户目录->外部用户/客户管理] */
|
|
32
32
|
sjdwMain: number;
|
|
33
|
-
|
|
33
|
+
/**受检单位 */
|
|
34
34
|
sjdwText: string;
|
|
35
|
-
|
|
35
|
+
/**受检单位 */
|
|
36
36
|
sjdwAddr: string;
|
|
37
37
|
/**--委托单位 --选择[用户目录->外部用户/客户管理] */
|
|
38
38
|
wtdwMain: number;
|
|
@@ -80,6 +80,8 @@ export interface IHznjXmsyWtdwResponse {
|
|
|
80
80
|
ynfbMain: number;
|
|
81
81
|
/**是否分包名称 */
|
|
82
82
|
ynfbText: string;
|
|
83
|
+
/**样品等级 */
|
|
84
|
+
ypdjText: string;
|
|
83
85
|
}
|
|
84
86
|
|
|
85
87
|
export class THznjXmsyWtdwResponse implements IHznjXmsyWtdwResponse {
|
|
@@ -131,6 +133,7 @@ export class THznjXmsyWtdwResponse implements IHznjXmsyWtdwResponse {
|
|
|
131
133
|
k9kmKmmc: string = "";
|
|
132
134
|
ynfbMain: number = 0;
|
|
133
135
|
ynfbText: string = "";
|
|
136
|
+
ypdjText: string = "";
|
|
134
137
|
|
|
135
138
|
constructor(data: Partial<IHznjXmsyWtdwResponse> = {}) {
|
|
136
139
|
if (data) {
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
export interface IHznjZbczBillResponse {
|
|
2
|
+
whoBuild: number;
|
|
3
|
+
userIndx: number;
|
|
4
|
+
zbczIndx: number;
|
|
5
|
+
idEntity: number;
|
|
6
|
+
dataStat: number;
|
|
7
|
+
dataHide: number;
|
|
8
|
+
dataOrdr: number;
|
|
9
|
+
dataFrom: number;
|
|
10
|
+
dataDate: number;
|
|
11
|
+
dataTime: number;
|
|
12
|
+
createBy: string;
|
|
13
|
+
createAt: number;
|
|
14
|
+
updateBy: string;
|
|
15
|
+
updateAt: number;
|
|
16
|
+
deleteBy: string;
|
|
17
|
+
deleteAt: number;
|
|
18
|
+
queuesBy: number;
|
|
19
|
+
/**零用数量 */
|
|
20
|
+
aplCount: number;
|
|
21
|
+
/**剩余数量 */
|
|
22
|
+
nowCount: number;
|
|
23
|
+
fromWhoBuild: number;
|
|
24
|
+
fromUserIndx: number;
|
|
25
|
+
fromNotiBill: number;
|
|
26
|
+
fromZblrBill: number;
|
|
27
|
+
fromZbjgBill: number;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export class THznjZbczBillResponse implements IHznjZbczBillResponse {
|
|
31
|
+
whoBuild: number = 0;
|
|
32
|
+
userIndx: number = 0;
|
|
33
|
+
zbczIndx: number = 0;
|
|
34
|
+
idEntity: 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
|
+
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
|
+
aplCount: number = 0;
|
|
49
|
+
nowCount: number = 0;
|
|
50
|
+
fromWhoBuild: number = 0;
|
|
51
|
+
fromUserIndx: number = 0;
|
|
52
|
+
fromNotiBill: number = 0;
|
|
53
|
+
fromZblrBill: number = 0;
|
|
54
|
+
fromZbjgBill: number = 0;
|
|
55
|
+
}
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
import { THznj, TCore } from "..";
|
|
2
|
+
|
|
3
|
+
export interface IHznjZbczResponse {
|
|
4
|
+
whoBuild: number;
|
|
5
|
+
userIndx: number;
|
|
6
|
+
zbczIndx: 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
|
+
/**申请日期 */
|
|
42
|
+
zbczDate: number;
|
|
43
|
+
/**流程状态:(0:制单;1:送审;2:终审) */
|
|
44
|
+
zbczStat: number;
|
|
45
|
+
/**单据类型:检验类型 */
|
|
46
|
+
zbczType: number;
|
|
47
|
+
/**单据编号 */
|
|
48
|
+
zbczCode: string;
|
|
49
|
+
/**单据名称 */
|
|
50
|
+
zbczName: string;
|
|
51
|
+
/**申请用途 */
|
|
52
|
+
zbczUses: string;
|
|
53
|
+
/**备注说明 */
|
|
54
|
+
zbczMemo: string;
|
|
55
|
+
|
|
56
|
+
coverURL: string;
|
|
57
|
+
touchURL: string;
|
|
58
|
+
unitText: string;
|
|
59
|
+
sourceDW: string;
|
|
60
|
+
|
|
61
|
+
lastDate: number;
|
|
62
|
+
lastTime: number;
|
|
63
|
+
flowStat: number;
|
|
64
|
+
didFirst: number;
|
|
65
|
+
lastMemo: string;
|
|
66
|
+
userName: string;
|
|
67
|
+
userGUID: string;
|
|
68
|
+
flowMain: number;
|
|
69
|
+
flowNode: number;
|
|
70
|
+
|
|
71
|
+
/**附件 */
|
|
72
|
+
listPath: TCore.IPathResponse[];
|
|
73
|
+
listBill: THznj.IHznjZbczBillResponse[];
|
|
74
|
+
/** 关联录入 */
|
|
75
|
+
listFrom: THznj.IHznjZbjgResponse[];
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
export class THznjZbczResponse implements IHznjZbczResponse {
|
|
79
|
+
whoBuild: number = 0;
|
|
80
|
+
userIndx: number = 0;
|
|
81
|
+
zbczIndx: number = 0;
|
|
82
|
+
sourceID: number = 0;
|
|
83
|
+
parentID: number = 0;
|
|
84
|
+
hashCode: number = 0;
|
|
85
|
+
dataLevl: number = 0;
|
|
86
|
+
dataFrom: number = 0;
|
|
87
|
+
kjndKJQJ: number = 0;
|
|
88
|
+
dataStat: number = 0;
|
|
89
|
+
dataOrdr: number = 0;
|
|
90
|
+
dataDate: number = 0;
|
|
91
|
+
dataType: number = 0;
|
|
92
|
+
dataTime: number = 0;
|
|
93
|
+
dataHide: number = 0;
|
|
94
|
+
dataGUID: string = "";
|
|
95
|
+
userMain: number = 0;
|
|
96
|
+
mastName: string = "";
|
|
97
|
+
mastGUID: string = "";
|
|
98
|
+
createBy: string = "";
|
|
99
|
+
createAt: number = 0;
|
|
100
|
+
updateBy: string = "";
|
|
101
|
+
updateAt: number = 0;
|
|
102
|
+
deleteBy: string = "";
|
|
103
|
+
deleteAt: number = 0;
|
|
104
|
+
queuesBy: number = 0;
|
|
105
|
+
entityID: string = "";
|
|
106
|
+
sourceND: number = 0;
|
|
107
|
+
menuMain: number = 0;
|
|
108
|
+
menuUUID: string = "";
|
|
109
|
+
unitMain: number = 0;
|
|
110
|
+
deptMain: number = 0;
|
|
111
|
+
sqyhText: string = "";
|
|
112
|
+
sqbmText: string = "";
|
|
113
|
+
flowUndo: number = 0;
|
|
114
|
+
flowUser: string = "";
|
|
115
|
+
flowText: string = "";
|
|
116
|
+
zbczDate: number = 0;
|
|
117
|
+
zbczStat: number = 0;
|
|
118
|
+
zbczType: number = 0;
|
|
119
|
+
zbczCode: string = "";
|
|
120
|
+
zbczName: string = "";
|
|
121
|
+
zbczUses: string = "";
|
|
122
|
+
zbczMemo: string = "";
|
|
123
|
+
|
|
124
|
+
coverURL: string = "";
|
|
125
|
+
touchURL: string = "";
|
|
126
|
+
unitText: string = "";
|
|
127
|
+
sourceDW: string = "";
|
|
128
|
+
|
|
129
|
+
lastDate: number = 0;
|
|
130
|
+
lastTime: number = 0;
|
|
131
|
+
flowStat: number = 0;
|
|
132
|
+
didFirst: number = 0;
|
|
133
|
+
lastMemo: string = "";
|
|
134
|
+
userName: string = "";
|
|
135
|
+
userGUID: string = "";
|
|
136
|
+
flowMain: number = 0;
|
|
137
|
+
flowNode: number = 0;
|
|
138
|
+
|
|
139
|
+
listPath: TCore.IPathResponse[] = [];
|
|
140
|
+
listBill: THznj.IHznjZbczBillResponse[] = [];
|
|
141
|
+
listFrom: THznj.IHznjZbjgResponse[] = [];
|
|
142
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
export interface IHznjZbjgBillResponse {
|
|
2
|
+
whoBuild: number;
|
|
3
|
+
userIndx: number;
|
|
4
|
+
zbjgIndx: number;
|
|
5
|
+
idEntity: number;
|
|
6
|
+
dataStat: number;
|
|
7
|
+
dataHide: number;
|
|
8
|
+
dataOrdr: number;
|
|
9
|
+
dataFrom: number;
|
|
10
|
+
dataDate: number;
|
|
11
|
+
dataTime: number;
|
|
12
|
+
createBy: string;
|
|
13
|
+
createAt: number;
|
|
14
|
+
updateBy: string;
|
|
15
|
+
updateAt: number;
|
|
16
|
+
deleteBy: string;
|
|
17
|
+
deleteAt: number;
|
|
18
|
+
queuesBy: number;
|
|
19
|
+
/**样品数量 */
|
|
20
|
+
getCount: number;
|
|
21
|
+
/**制备样品编号 */
|
|
22
|
+
billCode: string;
|
|
23
|
+
/**制备状态 */
|
|
24
|
+
zbztMain: number;
|
|
25
|
+
/**制备状态 */
|
|
26
|
+
zbztText: string;
|
|
27
|
+
/**正样数量 */
|
|
28
|
+
mainSize: number;
|
|
29
|
+
/**正样存放位置 */
|
|
30
|
+
mainLaid: string;
|
|
31
|
+
/**副样数量 */
|
|
32
|
+
minoSize: number;
|
|
33
|
+
/**副样存放位置 */
|
|
34
|
+
minoLaid: string;
|
|
35
|
+
/**储存条件 */
|
|
36
|
+
laidMode: number;
|
|
37
|
+
/**储存条件 */
|
|
38
|
+
laidText: string;
|
|
39
|
+
/**检验状态 */
|
|
40
|
+
jyztMain: number;
|
|
41
|
+
/**检验状态 */
|
|
42
|
+
jyztText: string;
|
|
43
|
+
fromWhoBuild: number;
|
|
44
|
+
fromUserIndx: number;
|
|
45
|
+
/**关联 hznj_noti_bill */
|
|
46
|
+
fromNotiBill: number;
|
|
47
|
+
/**关联 hznj_zblr_bill */
|
|
48
|
+
fromZblrBill: number;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
export class THznjZbjgBillResponse implements IHznjZbjgBillResponse {
|
|
52
|
+
whoBuild: number = 0;
|
|
53
|
+
userIndx: number = 0;
|
|
54
|
+
zbjgIndx: number = 0;
|
|
55
|
+
idEntity: number = 0;
|
|
56
|
+
dataStat: number = 0;
|
|
57
|
+
dataHide: number = 0;
|
|
58
|
+
dataOrdr: number = 0;
|
|
59
|
+
dataFrom: number = 0;
|
|
60
|
+
dataDate: number = 0;
|
|
61
|
+
dataTime: number = 0;
|
|
62
|
+
createBy: string = "";
|
|
63
|
+
createAt: number = 0;
|
|
64
|
+
updateBy: string = "";
|
|
65
|
+
updateAt: number = 0;
|
|
66
|
+
deleteBy: string = "";
|
|
67
|
+
deleteAt: number = 0;
|
|
68
|
+
queuesBy: number = 0;
|
|
69
|
+
getCount: number = 0;
|
|
70
|
+
billCode: string = "";
|
|
71
|
+
zbztMain: number = 0;
|
|
72
|
+
zbztText: string = "";
|
|
73
|
+
mainSize: number = 0;
|
|
74
|
+
mainLaid: string = "";
|
|
75
|
+
minoSize: number = 0;
|
|
76
|
+
minoLaid: string = "";
|
|
77
|
+
laidMode: number = 0;
|
|
78
|
+
laidText: string = "";
|
|
79
|
+
jyztMain: number = 0;
|
|
80
|
+
jyztText: string = "";
|
|
81
|
+
fromWhoBuild: number = 0;
|
|
82
|
+
fromUserIndx: number = 0;
|
|
83
|
+
fromNotiBill: number = 0;
|
|
84
|
+
fromZblrBill: number = 0;
|
|
85
|
+
}
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
import { THznj, TCore } from "..";
|
|
2
|
+
|
|
3
|
+
export interface IHznjZbjgResponse {
|
|
4
|
+
whoBuild: number;
|
|
5
|
+
userIndx: number;
|
|
6
|
+
zbjgIndx: 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
|
+
/**申请日期 */
|
|
42
|
+
zbjgDate: number;
|
|
43
|
+
/**流程状态:(0:制单;1:送审;2:终审) */
|
|
44
|
+
zbjgStat: number;
|
|
45
|
+
/**单据类型:检验类型 */
|
|
46
|
+
zbjgType: number;
|
|
47
|
+
/**单据编号 */
|
|
48
|
+
zbjgCode: string;
|
|
49
|
+
/**单据名称 */
|
|
50
|
+
zbjgName: string;
|
|
51
|
+
/**申请用途 */
|
|
52
|
+
zbjgUses: string;
|
|
53
|
+
/**备注说明 */
|
|
54
|
+
zbjgMemo: string;
|
|
55
|
+
|
|
56
|
+
coverURL: string;
|
|
57
|
+
touchURL: string;
|
|
58
|
+
unitText: string;
|
|
59
|
+
sourceDW: string;
|
|
60
|
+
|
|
61
|
+
lastDate: number;
|
|
62
|
+
lastTime: number;
|
|
63
|
+
flowStat: number;
|
|
64
|
+
didFirst: number;
|
|
65
|
+
lastMemo: string;
|
|
66
|
+
userName: string;
|
|
67
|
+
userGUID: string;
|
|
68
|
+
flowMain: number;
|
|
69
|
+
flowNode: number;
|
|
70
|
+
|
|
71
|
+
/**附件 */
|
|
72
|
+
listPath: TCore.IPathResponse[];
|
|
73
|
+
listBill: THznj.IHznjZbjgBillResponse[];
|
|
74
|
+
/** 关联录入 */
|
|
75
|
+
listFrom: THznj.IHznjZblrResponse[];
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
export class THznjZbjgResponse implements IHznjZbjgResponse {
|
|
79
|
+
whoBuild: number = 0;
|
|
80
|
+
userIndx: number = 0;
|
|
81
|
+
zbjgIndx: number = 0;
|
|
82
|
+
sourceID: number = 0;
|
|
83
|
+
parentID: number = 0;
|
|
84
|
+
hashCode: number = 0;
|
|
85
|
+
dataLevl: number = 0;
|
|
86
|
+
dataFrom: number = 0;
|
|
87
|
+
kjndKJQJ: number = 0;
|
|
88
|
+
dataStat: number = 0;
|
|
89
|
+
dataOrdr: number = 0;
|
|
90
|
+
dataDate: number = 0;
|
|
91
|
+
dataType: number = 0;
|
|
92
|
+
dataTime: number = 0;
|
|
93
|
+
dataHide: number = 0;
|
|
94
|
+
dataGUID: string = "";
|
|
95
|
+
userMain: number = 0;
|
|
96
|
+
mastName: string = "";
|
|
97
|
+
mastGUID: string = "";
|
|
98
|
+
createBy: string = "";
|
|
99
|
+
createAt: number = 0;
|
|
100
|
+
updateBy: string = "";
|
|
101
|
+
updateAt: number = 0;
|
|
102
|
+
deleteBy: string = "";
|
|
103
|
+
deleteAt: number = 0;
|
|
104
|
+
queuesBy: number = 0;
|
|
105
|
+
entityID: string = "";
|
|
106
|
+
sourceND: number = 0;
|
|
107
|
+
menuMain: number = 0;
|
|
108
|
+
menuUUID: string = "";
|
|
109
|
+
unitMain: number = 0;
|
|
110
|
+
deptMain: number = 0;
|
|
111
|
+
sqyhText: string = "";
|
|
112
|
+
sqbmText: string = "";
|
|
113
|
+
flowUndo: number = 0;
|
|
114
|
+
flowUser: string = "";
|
|
115
|
+
flowText: string = "";
|
|
116
|
+
zbjgDate: number = 0;
|
|
117
|
+
zbjgStat: number = 0;
|
|
118
|
+
zbjgType: number = 0;
|
|
119
|
+
zbjgCode: string = "";
|
|
120
|
+
zbjgName: string = "";
|
|
121
|
+
zbjgUses: string = "";
|
|
122
|
+
zbjgMemo: string = "";
|
|
123
|
+
|
|
124
|
+
coverURL: string = "";
|
|
125
|
+
touchURL: string = "";
|
|
126
|
+
unitText: string = "";
|
|
127
|
+
sourceDW: string = "";
|
|
128
|
+
|
|
129
|
+
lastDate: number = 0;
|
|
130
|
+
lastTime: number = 0;
|
|
131
|
+
flowStat: number = 0;
|
|
132
|
+
didFirst: number = 0;
|
|
133
|
+
lastMemo: string = "";
|
|
134
|
+
userName: string = "";
|
|
135
|
+
userGUID: string = "";
|
|
136
|
+
flowMain: number = 0;
|
|
137
|
+
flowNode: number = 0;
|
|
138
|
+
|
|
139
|
+
listPath: TCore.IPathResponse[] = [];
|
|
140
|
+
listBill: THznj.IHznjZbjgBillResponse[] = [];
|
|
141
|
+
listFrom: THznj.IHznjZblrResponse[] = [];
|
|
142
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
export interface IHznjZblyBillResponse {
|
|
2
|
+
whoBuild: number;
|
|
3
|
+
userIndx: number;
|
|
4
|
+
zblyIndx: number;
|
|
5
|
+
idEntity: number;
|
|
6
|
+
dataStat: number;
|
|
7
|
+
dataHide: number;
|
|
8
|
+
dataOrdr: number;
|
|
9
|
+
dataFrom: number;
|
|
10
|
+
dataDate: number;
|
|
11
|
+
dataTime: number;
|
|
12
|
+
createBy: string;
|
|
13
|
+
createAt: number;
|
|
14
|
+
updateBy: string;
|
|
15
|
+
updateAt: number;
|
|
16
|
+
deleteBy: string;
|
|
17
|
+
deleteAt: number;
|
|
18
|
+
queuesBy: number;
|
|
19
|
+
/**零用数量 */
|
|
20
|
+
aplCount: number;
|
|
21
|
+
/**剩余数量 */
|
|
22
|
+
nowCount: number;
|
|
23
|
+
fromWhoBuild: number;
|
|
24
|
+
fromUserIndx: number;
|
|
25
|
+
/**关联 hznj_noti_bill */
|
|
26
|
+
fromNotiBill: number;
|
|
27
|
+
/**关联 hznj_zblr_bill */
|
|
28
|
+
fromZblrBill: number;
|
|
29
|
+
/**关联 hznj_zbly_bill */
|
|
30
|
+
fromZbjgBill: number;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export class THznjZblyBillResponse implements IHznjZblyBillResponse {
|
|
34
|
+
whoBuild: number = 0;
|
|
35
|
+
userIndx: number = 0;
|
|
36
|
+
zblyIndx: number = 0;
|
|
37
|
+
idEntity: number = 0;
|
|
38
|
+
dataStat: number = 0;
|
|
39
|
+
dataHide: number = 0;
|
|
40
|
+
dataOrdr: number = 0;
|
|
41
|
+
dataFrom: number = 0;
|
|
42
|
+
dataDate: number = 0;
|
|
43
|
+
dataTime: number = 0;
|
|
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
|
+
aplCount: number = 0;
|
|
52
|
+
nowCount: number = 0;
|
|
53
|
+
fromWhoBuild: number = 0;
|
|
54
|
+
fromUserIndx: number = 0;
|
|
55
|
+
fromNotiBill: number = 0;
|
|
56
|
+
fromZblrBill: number = 0;
|
|
57
|
+
fromZbjgBill: number = 0;
|
|
58
|
+
}
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
import { THznj, TCore } from "..";
|
|
2
|
+
|
|
3
|
+
export interface IHznjZblyResponse {
|
|
4
|
+
whoBuild: number;
|
|
5
|
+
userIndx: number;
|
|
6
|
+
zblyIndx: 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
|
+
/**申请日期 */
|
|
42
|
+
zblyDate: number;
|
|
43
|
+
/**流程状态:(0:制单;1:送审;2:终审) */
|
|
44
|
+
zblyStat: number;
|
|
45
|
+
/**单据类型:检验类型 */
|
|
46
|
+
zblyType: number;
|
|
47
|
+
/**单据编号 */
|
|
48
|
+
zblyCode: string;
|
|
49
|
+
/**单据名称 */
|
|
50
|
+
zblyName: string;
|
|
51
|
+
/**申请用途 */
|
|
52
|
+
zblyUses: string;
|
|
53
|
+
/**备注说明 */
|
|
54
|
+
zblyMemo: string;
|
|
55
|
+
|
|
56
|
+
coverURL: string;
|
|
57
|
+
touchURL: string;
|
|
58
|
+
unitText: string;
|
|
59
|
+
sourceDW: string;
|
|
60
|
+
|
|
61
|
+
lastDate: number;
|
|
62
|
+
lastTime: number;
|
|
63
|
+
flowStat: number;
|
|
64
|
+
didFirst: number;
|
|
65
|
+
lastMemo: string;
|
|
66
|
+
userName: string;
|
|
67
|
+
userGUID: string;
|
|
68
|
+
flowMain: number;
|
|
69
|
+
flowNode: number;
|
|
70
|
+
|
|
71
|
+
/**附件 */
|
|
72
|
+
listPath: TCore.IPathResponse[];
|
|
73
|
+
listBill: THznj.IHznjZblyBillResponse[];
|
|
74
|
+
/** 关联结果 */
|
|
75
|
+
listFrom: THznj.IHznjZbjgResponse[];
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
export class THznjZblyResponse implements IHznjZblyResponse {
|
|
79
|
+
whoBuild: number = 0;
|
|
80
|
+
userIndx: number = 0;
|
|
81
|
+
zblyIndx: number = 0;
|
|
82
|
+
sourceID: number = 0;
|
|
83
|
+
parentID: number = 0;
|
|
84
|
+
hashCode: number = 0;
|
|
85
|
+
dataLevl: number = 0;
|
|
86
|
+
dataFrom: number = 0;
|
|
87
|
+
kjndKJQJ: number = 0;
|
|
88
|
+
dataStat: number = 0;
|
|
89
|
+
dataOrdr: number = 0;
|
|
90
|
+
dataDate: number = 0;
|
|
91
|
+
dataType: number = 0;
|
|
92
|
+
dataTime: number = 0;
|
|
93
|
+
dataHide: number = 0;
|
|
94
|
+
dataGUID: string = "";
|
|
95
|
+
userMain: number = 0;
|
|
96
|
+
mastName: string = "";
|
|
97
|
+
mastGUID: string = "";
|
|
98
|
+
createBy: string = "";
|
|
99
|
+
createAt: number = 0;
|
|
100
|
+
updateBy: string = "";
|
|
101
|
+
updateAt: number = 0;
|
|
102
|
+
deleteBy: string = "";
|
|
103
|
+
deleteAt: number = 0;
|
|
104
|
+
queuesBy: number = 0;
|
|
105
|
+
entityID: string = "";
|
|
106
|
+
sourceND: number = 0;
|
|
107
|
+
menuMain: number = 0;
|
|
108
|
+
menuUUID: string = "";
|
|
109
|
+
unitMain: number = 0;
|
|
110
|
+
deptMain: number = 0;
|
|
111
|
+
sqyhText: string = "";
|
|
112
|
+
sqbmText: string = "";
|
|
113
|
+
flowUndo: number = 0;
|
|
114
|
+
flowUser: string = "";
|
|
115
|
+
flowText: string = "";
|
|
116
|
+
zblyDate: number = 0;
|
|
117
|
+
zblyStat: number = 0;
|
|
118
|
+
zblyType: number = 0;
|
|
119
|
+
zblyCode: string = "";
|
|
120
|
+
zblyName: string = "";
|
|
121
|
+
zblyUses: string = "";
|
|
122
|
+
zblyMemo: string = "";
|
|
123
|
+
|
|
124
|
+
coverURL: string = "";
|
|
125
|
+
touchURL: string = "";
|
|
126
|
+
unitText: string = "";
|
|
127
|
+
sourceDW: string = "";
|
|
128
|
+
|
|
129
|
+
lastDate: number = 0;
|
|
130
|
+
lastTime: number = 0;
|
|
131
|
+
flowStat: number = 0;
|
|
132
|
+
didFirst: number = 0;
|
|
133
|
+
lastMemo: string = "";
|
|
134
|
+
userName: string = "";
|
|
135
|
+
userGUID: string = "";
|
|
136
|
+
flowMain: number = 0;
|
|
137
|
+
flowNode: number = 0;
|
|
138
|
+
|
|
139
|
+
listPath: TCore.IPathResponse[] = [];
|
|
140
|
+
listBill: THznj.IHznjZblyBillResponse[] = [];
|
|
141
|
+
listFrom: THznj.IHznjZbjgResponse[] = [];
|
|
142
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
export interface IHznjZbthBillResponse {
|
|
2
|
+
whoBuild: number;
|
|
3
|
+
userIndx: number;
|
|
4
|
+
zbthIndx: number;
|
|
5
|
+
idEntity: number;
|
|
6
|
+
dataStat: number;
|
|
7
|
+
dataHide: number;
|
|
8
|
+
dataOrdr: number;
|
|
9
|
+
dataFrom: number;
|
|
10
|
+
dataDate: number;
|
|
11
|
+
dataTime: number;
|
|
12
|
+
createBy: string;
|
|
13
|
+
createAt: number;
|
|
14
|
+
updateBy: string;
|
|
15
|
+
updateAt: number;
|
|
16
|
+
deleteBy: string;
|
|
17
|
+
deleteAt: number;
|
|
18
|
+
queuesBy: number;
|
|
19
|
+
/**零用数量 */
|
|
20
|
+
aplCount: number;
|
|
21
|
+
/**剩余数量 */
|
|
22
|
+
nowCount: number;
|
|
23
|
+
fromWhoBuild: number;
|
|
24
|
+
fromUserIndx: number;
|
|
25
|
+
fromNotiBill: number;
|
|
26
|
+
fromZblrBill: number;
|
|
27
|
+
fromZbjgBill: number;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export class THznjZbthBillResponse implements IHznjZbthBillResponse {
|
|
31
|
+
whoBuild: number = 0;
|
|
32
|
+
userIndx: number = 0;
|
|
33
|
+
zbthIndx: number = 0;
|
|
34
|
+
idEntity: 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
|
+
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
|
+
aplCount: number = 0;
|
|
49
|
+
nowCount: number = 0;
|
|
50
|
+
fromWhoBuild: number = 0;
|
|
51
|
+
fromUserIndx: number = 0;
|
|
52
|
+
fromNotiBill: number = 0;
|
|
53
|
+
fromZblrBill: number = 0;
|
|
54
|
+
fromZbjgBill: number = 0;
|
|
55
|
+
}
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
import { THznj, TCore } from "..";
|
|
2
|
+
|
|
3
|
+
export interface IHznjZbthResponse {
|
|
4
|
+
whoBuild: number;
|
|
5
|
+
userIndx: number;
|
|
6
|
+
zbthIndx: 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
|
+
/**申请日期 */
|
|
42
|
+
zbthDate: number;
|
|
43
|
+
/**流程状态:(0:制单;1:送审;2:终审) */
|
|
44
|
+
zbthStat: number;
|
|
45
|
+
/**单据类型:检验类型 */
|
|
46
|
+
zbthType: number;
|
|
47
|
+
/**单据编号 */
|
|
48
|
+
zbthCode: string;
|
|
49
|
+
/**单据名称 */
|
|
50
|
+
zbthName: string;
|
|
51
|
+
/**申请用途 */
|
|
52
|
+
zbthUses: string;
|
|
53
|
+
/**备注说明 */
|
|
54
|
+
zbthMemo: string;
|
|
55
|
+
|
|
56
|
+
coverURL: string;
|
|
57
|
+
touchURL: string;
|
|
58
|
+
unitText: string;
|
|
59
|
+
sourceDW: string;
|
|
60
|
+
|
|
61
|
+
lastDate: number;
|
|
62
|
+
lastTime: number;
|
|
63
|
+
flowStat: number;
|
|
64
|
+
didFirst: number;
|
|
65
|
+
lastMemo: string;
|
|
66
|
+
userName: string;
|
|
67
|
+
userGUID: string;
|
|
68
|
+
flowMain: number;
|
|
69
|
+
flowNode: number;
|
|
70
|
+
|
|
71
|
+
/**附件 */
|
|
72
|
+
listPath: TCore.IPathResponse[];
|
|
73
|
+
listBill: THznj.IHznjZbthBillResponse[];
|
|
74
|
+
/** 关联结果 */
|
|
75
|
+
listFrom: THznj.IHznjZbjgResponse[];
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
export class THznjZbthResponse implements IHznjZbthResponse {
|
|
79
|
+
whoBuild: number = 0;
|
|
80
|
+
userIndx: number = 0;
|
|
81
|
+
zbthIndx: number = 0;
|
|
82
|
+
sourceID: number = 0;
|
|
83
|
+
parentID: number = 0;
|
|
84
|
+
hashCode: number = 0;
|
|
85
|
+
dataLevl: number = 0;
|
|
86
|
+
dataFrom: number = 0;
|
|
87
|
+
kjndKJQJ: number = 0;
|
|
88
|
+
dataStat: number = 0;
|
|
89
|
+
dataOrdr: number = 0;
|
|
90
|
+
dataDate: number = 0;
|
|
91
|
+
dataType: number = 0;
|
|
92
|
+
dataTime: number = 0;
|
|
93
|
+
dataHide: number = 0;
|
|
94
|
+
dataGUID: string = "";
|
|
95
|
+
userMain: number = 0;
|
|
96
|
+
mastName: string = "";
|
|
97
|
+
mastGUID: string = "";
|
|
98
|
+
createBy: string = "";
|
|
99
|
+
createAt: number = 0;
|
|
100
|
+
updateBy: string = "";
|
|
101
|
+
updateAt: number = 0;
|
|
102
|
+
deleteBy: string = "";
|
|
103
|
+
deleteAt: number = 0;
|
|
104
|
+
queuesBy: number = 0;
|
|
105
|
+
entityID: string = "";
|
|
106
|
+
sourceND: number = 0;
|
|
107
|
+
menuMain: number = 0;
|
|
108
|
+
menuUUID: string = "";
|
|
109
|
+
unitMain: number = 0;
|
|
110
|
+
deptMain: number = 0;
|
|
111
|
+
sqyhText: string = "";
|
|
112
|
+
sqbmText: string = "";
|
|
113
|
+
flowUndo: number = 0;
|
|
114
|
+
flowUser: string = "";
|
|
115
|
+
flowText: string = "";
|
|
116
|
+
zbthDate: number = 0;
|
|
117
|
+
zbthStat: number = 0;
|
|
118
|
+
zbthType: number = 0;
|
|
119
|
+
zbthCode: string = "";
|
|
120
|
+
zbthName: string = "";
|
|
121
|
+
zbthUses: string = "";
|
|
122
|
+
zbthMemo: string = "";
|
|
123
|
+
|
|
124
|
+
coverURL: string = "";
|
|
125
|
+
touchURL: string = "";
|
|
126
|
+
unitText: string = "";
|
|
127
|
+
sourceDW: string = "";
|
|
128
|
+
|
|
129
|
+
lastDate: number = 0;
|
|
130
|
+
lastTime: number = 0;
|
|
131
|
+
flowStat: number = 0;
|
|
132
|
+
didFirst: number = 0;
|
|
133
|
+
lastMemo: string = "";
|
|
134
|
+
userName: string = "";
|
|
135
|
+
userGUID: string = "";
|
|
136
|
+
flowMain: number = 0;
|
|
137
|
+
flowNode: number = 0;
|
|
138
|
+
|
|
139
|
+
listPath: TCore.IPathResponse[] = [];
|
|
140
|
+
listBill: THznj.IHznjZbthBillResponse[] = [];
|
|
141
|
+
listFrom: THznj.IHznjZbjgResponse[] = [];
|
|
142
|
+
}
|
package/src/hznj/index.ts
CHANGED
|
@@ -20,8 +20,18 @@ import { THznjNotiBillResponse, IHznjNotiBillResponse } from "./IHznjNotiBillRes
|
|
|
20
20
|
//#zblr
|
|
21
21
|
import { THznjZblrResponse, IHznjZblrResponse } from "./IHznjZblrResponse";
|
|
22
22
|
import { THznjZblrBillResponse, IHznjZblrBillResponse } from "./IHznjZblrBillResponse";
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
//#zbly
|
|
24
|
+
import { THznjZblyResponse, IHznjZblyResponse } from "./IHznjZblyResponse";
|
|
25
|
+
import { THznjZblyBillResponse, IHznjZblyBillResponse } from "./IHznjZblyBillResponse";
|
|
26
|
+
//#zbjg
|
|
27
|
+
import { THznjZbjgResponse, IHznjZbjgResponse } from "./IHznjZbjgResponse";
|
|
28
|
+
import { THznjZbjgBillResponse, IHznjZbjgBillResponse } from "./IHznjZbjgBillResponse";
|
|
29
|
+
//#zbth
|
|
30
|
+
import { THznjZbthResponse, IHznjZbthResponse } from "./IHznjZbthResponse";
|
|
31
|
+
import { THznjZbthBillResponse, IHznjZbthBillResponse } from "./IHznjZbthBillResponse";
|
|
32
|
+
//#zbcz
|
|
33
|
+
import { THznjZbczResponse, IHznjZbczResponse } from "./IHznjZbczResponse";
|
|
34
|
+
import { THznjZbczBillResponse, IHznjZbczBillResponse } from "./IHznjZbczBillResponse";
|
|
25
35
|
|
|
26
36
|
export {
|
|
27
37
|
THznjBaseResponse,
|
|
@@ -39,6 +49,14 @@ export {
|
|
|
39
49
|
THznjNotiBillResponse,
|
|
40
50
|
THznjZblrResponse,
|
|
41
51
|
THznjZblrBillResponse,
|
|
52
|
+
THznjZblyResponse,
|
|
53
|
+
THznjZblyBillResponse,
|
|
54
|
+
THznjZbjgResponse,
|
|
55
|
+
THznjZbjgBillResponse,
|
|
56
|
+
THznjZbthResponse,
|
|
57
|
+
THznjZbthBillResponse,
|
|
58
|
+
THznjZbczResponse,
|
|
59
|
+
THznjZbczBillResponse,
|
|
42
60
|
type IHznjBaseResponse,
|
|
43
61
|
type IHznjBasePathResponse,
|
|
44
62
|
type IHznjBaseItemResponse,
|
|
@@ -54,4 +72,12 @@ export {
|
|
|
54
72
|
type IHznjNotiBillResponse,
|
|
55
73
|
type IHznjZblrResponse,
|
|
56
74
|
type IHznjZblrBillResponse,
|
|
75
|
+
type IHznjZblyResponse,
|
|
76
|
+
type IHznjZblyBillResponse,
|
|
77
|
+
type IHznjZbjgResponse,
|
|
78
|
+
type IHznjZbjgBillResponse,
|
|
79
|
+
type IHznjZbthResponse,
|
|
80
|
+
type IHznjZbthBillResponse,
|
|
81
|
+
type IHznjZbczResponse,
|
|
82
|
+
type IHznjZbczBillResponse,
|
|
57
83
|
};
|
|
@@ -72,6 +72,7 @@ export interface IHznkFytqResponse {
|
|
|
72
72
|
/**关联项目 */
|
|
73
73
|
listFrom: THznk.IHznkFydwBillResponse[];
|
|
74
74
|
listSKDW: TCore.IUserAcnoResponse[];
|
|
75
|
+
listSKYH: TCore.IUserLiteResponse[];
|
|
75
76
|
listBill: THznk.IHznkFytqBillResponse[];
|
|
76
77
|
}
|
|
77
78
|
|
|
@@ -139,6 +140,7 @@ export class THznkFytqResponse implements IHznkFytqResponse {
|
|
|
139
140
|
listPath: TCore.IPathResponse[] = [];
|
|
140
141
|
listFrom: THznk.IHznkFydwBillResponse[] = [];
|
|
141
142
|
listSKDW: TCore.IUserAcnoResponse[] = [];
|
|
143
|
+
listSKYH: TCore.IUserLiteResponse[] = [];
|
|
142
144
|
listBill: THznk.IHznkFytqBillResponse[] = [];
|
|
143
145
|
constructor(data: Partial<IHznkFytqResponse> = {}) {
|
|
144
146
|
if (data) {
|