@ningboyz/types 1.7.44 → 1.7.46
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/const/const_wlzf.ts +2 -0
- package/src/const/index.ts +3 -1
- package/src/wlzf/IWlzfBillResponse.ts +148 -0
- package/src/wlzf/IWlzfEnvrResponse.ts +38 -27
- package/src/wlzf/IWlzfMainResponse.ts +159 -0
- package/src/wlzf/index.ts +3 -1
package/package.json
CHANGED
package/src/const/index.ts
CHANGED
|
@@ -34,6 +34,7 @@ import * as PageMode from "./const_page_mode";
|
|
|
34
34
|
import * as Read from "./const_read";
|
|
35
35
|
import * as Hznk from "./const_hznk";
|
|
36
36
|
import * as Gzjg from "./const_gzjg";
|
|
37
|
+
import * as Wlzf from "./const_wlzf";
|
|
37
38
|
|
|
38
39
|
export {
|
|
39
40
|
Align,
|
|
@@ -69,7 +70,8 @@ export {
|
|
|
69
70
|
PageMode,
|
|
70
71
|
Read,
|
|
71
72
|
Hznk,
|
|
72
|
-
Gzjg
|
|
73
|
+
Gzjg,
|
|
74
|
+
Wlzf
|
|
73
75
|
};
|
|
74
76
|
|
|
75
77
|
export type ModuleType = (typeof ConstModuleType)[keyof typeof ConstModuleType];
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
export interface IWlzfBillResponse {
|
|
2
|
+
whoBuild: number;
|
|
3
|
+
userIndx: number;
|
|
4
|
+
billIndx: number;
|
|
5
|
+
wlzfMain: number;
|
|
6
|
+
|
|
7
|
+
dataStat: number;
|
|
8
|
+
dataHide: number;
|
|
9
|
+
dataOrdr: number;
|
|
10
|
+
dataFrom: number;
|
|
11
|
+
dataDate: number;
|
|
12
|
+
dataTime: number;
|
|
13
|
+
mastName: string;
|
|
14
|
+
mastGUID: string;
|
|
15
|
+
createBy: string;
|
|
16
|
+
createAt: number;
|
|
17
|
+
updateBy: string;
|
|
18
|
+
updateAt: number;
|
|
19
|
+
deleteBy: string;
|
|
20
|
+
deleteAt: number;
|
|
21
|
+
queuesBy: number;
|
|
22
|
+
|
|
23
|
+
outMoney: number;
|
|
24
|
+
wlzfCode: string;
|
|
25
|
+
wlzfUses: string;
|
|
26
|
+
wlzfMemo: string;
|
|
27
|
+
|
|
28
|
+
aczfIndx: number;
|
|
29
|
+
aczfYzbm: string;
|
|
30
|
+
aczfYhbm: string;
|
|
31
|
+
aczfKhyh: string;
|
|
32
|
+
aczfYhzh: string;
|
|
33
|
+
aczfZhmc: string;
|
|
34
|
+
aczfLiha: string;
|
|
35
|
+
|
|
36
|
+
acnoIndx: number;
|
|
37
|
+
acnoYhbm: string;
|
|
38
|
+
acnoKhyh: string;
|
|
39
|
+
acnoYhzh: string;
|
|
40
|
+
acnoLiha: string;
|
|
41
|
+
acnoYhmc: string;
|
|
42
|
+
acnoZhmc: string;
|
|
43
|
+
acnoZhlx: number;
|
|
44
|
+
|
|
45
|
+
wlzfStat: string;
|
|
46
|
+
wlzfJyxh: string;
|
|
47
|
+
wlzfJyzt: string;
|
|
48
|
+
wlzfDzhd: string;
|
|
49
|
+
wlzfZhye: string;
|
|
50
|
+
wlzfYddm: string;
|
|
51
|
+
wlzfSbyy: string;
|
|
52
|
+
wlzfPdcd: string;
|
|
53
|
+
wlzfHnhw: number;
|
|
54
|
+
wlzfDate: number;
|
|
55
|
+
wlzfEnvr: number;
|
|
56
|
+
iDefault: number; // #是否默认
|
|
57
|
+
nbyzStat: number; // #支付状态
|
|
58
|
+
acnoIdcd: string; // #身份证号(收款人)
|
|
59
|
+
|
|
60
|
+
outTotal: number;
|
|
61
|
+
entityID: string;
|
|
62
|
+
envrUUID: string;
|
|
63
|
+
|
|
64
|
+
fromWhoBuild: number;
|
|
65
|
+
fromUserIndx: number;
|
|
66
|
+
fromAcnoIndx: number;
|
|
67
|
+
fromEntityID: string;
|
|
68
|
+
fromBillIndx: number;
|
|
69
|
+
fromTablName: string;
|
|
70
|
+
fromBillCode: string;
|
|
71
|
+
fromUnitIndx: number;
|
|
72
|
+
fromCodeFull: string;
|
|
73
|
+
fromIdEntity: number;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
export class TWlzfBillResponse implements IWlzfBillResponse {
|
|
77
|
+
whoBuild: number = 0;
|
|
78
|
+
userIndx: number = 0;
|
|
79
|
+
billIndx: number = 0;
|
|
80
|
+
wlzfMain: number = 0;
|
|
81
|
+
dataStat: number = 0;
|
|
82
|
+
dataHide: number = 0;
|
|
83
|
+
dataOrdr: number = 0;
|
|
84
|
+
dataFrom: number = 0;
|
|
85
|
+
dataDate: number = 0;
|
|
86
|
+
dataTime: number = 0;
|
|
87
|
+
mastName: string = "";
|
|
88
|
+
mastGUID: string = "";
|
|
89
|
+
createBy: string = "";
|
|
90
|
+
createAt: number = 0;
|
|
91
|
+
updateBy: string = "";
|
|
92
|
+
updateAt: number = 0;
|
|
93
|
+
deleteBy: string = "";
|
|
94
|
+
deleteAt: number = 0;
|
|
95
|
+
queuesBy: number = 0;
|
|
96
|
+
|
|
97
|
+
outMoney: number = 0;
|
|
98
|
+
wlzfCode: string = "";
|
|
99
|
+
wlzfUses: string = "";
|
|
100
|
+
wlzfMemo: string = "";
|
|
101
|
+
|
|
102
|
+
aczfIndx: number = 0;
|
|
103
|
+
aczfYzbm: string = "";
|
|
104
|
+
aczfYhbm: string = "";
|
|
105
|
+
aczfKhyh: string = "";
|
|
106
|
+
aczfYhzh: string = "";
|
|
107
|
+
aczfZhmc: string = "";
|
|
108
|
+
aczfLiha: string = "";
|
|
109
|
+
|
|
110
|
+
acnoIndx: number = 0;
|
|
111
|
+
acnoYhbm: string = "";
|
|
112
|
+
acnoKhyh: string = "";
|
|
113
|
+
acnoYhzh: string = "";
|
|
114
|
+
acnoLiha: string = "";
|
|
115
|
+
acnoYhmc: string = "";
|
|
116
|
+
acnoZhmc: string = "";
|
|
117
|
+
acnoZhlx: number = 0;
|
|
118
|
+
|
|
119
|
+
wlzfStat: string = "";
|
|
120
|
+
wlzfJyxh: string = "";
|
|
121
|
+
wlzfJyzt: string = "";
|
|
122
|
+
wlzfDzhd: string = "";
|
|
123
|
+
wlzfZhye: string = "";
|
|
124
|
+
wlzfYddm: string = "";
|
|
125
|
+
wlzfSbyy: string = "";
|
|
126
|
+
wlzfPdcd: string = "";
|
|
127
|
+
wlzfHnhw: number = 0;
|
|
128
|
+
wlzfDate: number = 0;
|
|
129
|
+
wlzfEnvr: number = 0;
|
|
130
|
+
iDefault: number = 0; // #是否默认
|
|
131
|
+
nbyzStat: number = 0; // #支付状态
|
|
132
|
+
acnoIdcd: string = ""; // #身份证号(收款人)
|
|
133
|
+
|
|
134
|
+
outTotal: number = 0;
|
|
135
|
+
entityID: string = "";
|
|
136
|
+
envrUUID: string = "";
|
|
137
|
+
|
|
138
|
+
fromWhoBuild: number = 0;
|
|
139
|
+
fromUserIndx: number = 0;
|
|
140
|
+
fromAcnoIndx: number = 0;
|
|
141
|
+
fromEntityID: string = "";
|
|
142
|
+
fromBillIndx: number = 0;
|
|
143
|
+
fromTablName: string = "";
|
|
144
|
+
fromBillCode: string = "";
|
|
145
|
+
fromUnitIndx: number = 0;
|
|
146
|
+
fromCodeFull: string = "";
|
|
147
|
+
fromIdEntity: number = 0;
|
|
148
|
+
}
|
|
@@ -32,28 +32,34 @@ export interface IWlzfEnvrResponse {
|
|
|
32
32
|
aczfKhyh: string;
|
|
33
33
|
aczfYhzh: string;
|
|
34
34
|
aczfZhmc: string;
|
|
35
|
-
aczfMemo: string;
|
|
36
|
-
yzzfTxdz: string;
|
|
37
|
-
yihaSqkh: string;
|
|
38
|
-
yihaSqmm: string;
|
|
39
|
-
yihaCzkh: string;
|
|
40
|
-
yihaCzmm: string;
|
|
41
|
-
yihaTxdz: string;
|
|
42
|
-
yihaQmdz: string;
|
|
43
|
-
yihaWjdz: string;
|
|
44
35
|
aczfLiha: string;
|
|
36
|
+
aczfMemo: string;
|
|
37
|
+
yzzfTxdz: string; // #支付地址
|
|
38
|
+
yihaSqkh: string; // #授权客户
|
|
39
|
+
yihaSqmm: string; // #授权密码
|
|
40
|
+
yihaCzkh: string; // #操作客户
|
|
41
|
+
yihaCzmm: string; // #操作密码
|
|
42
|
+
yihaTxdz: string; // #通读地址
|
|
43
|
+
yihaQmdz: string; // #签名地址
|
|
44
|
+
yihaWjdz: string; // #文件地址
|
|
45
|
+
yihaQydm: string; // #应答代码
|
|
45
46
|
ysdwText: string;
|
|
47
|
+
asCznbcb: number;
|
|
48
|
+
asDzyzyh: number;
|
|
46
49
|
srvr4ftp: string;
|
|
47
50
|
port4ftp: string;
|
|
48
51
|
user4ftp: string;
|
|
49
52
|
pswd4ftp: string;
|
|
50
53
|
file4ftp: string;
|
|
51
|
-
|
|
52
|
-
|
|
54
|
+
envrType: number;
|
|
55
|
+
uses4TLS: number;
|
|
56
|
+
useBatch: number; // #批量支付
|
|
57
|
+
encryKey: string; // #国密密钥
|
|
58
|
+
envrBizh: string; // #币种标识 (新增)
|
|
53
59
|
sourceDW: string;
|
|
54
60
|
unitIndx: number;
|
|
55
|
-
|
|
56
|
-
|
|
61
|
+
unitMain: number;
|
|
62
|
+
typeText: string;
|
|
57
63
|
listYSDW: IUnitResponse[];
|
|
58
64
|
}
|
|
59
65
|
|
|
@@ -84,33 +90,38 @@ export class TWlzfEnvrResponse implements IWlzfEnvrResponse {
|
|
|
84
90
|
entityID: string = "";
|
|
85
91
|
envrCode: string = "";
|
|
86
92
|
envrName: string = "";
|
|
87
|
-
/** 甬政编码 对应:const_wlzf.ts中定义的银行编码 */
|
|
88
93
|
aczfYzbm: string = "";
|
|
89
94
|
aczfYhbm: string = "";
|
|
90
95
|
aczfKhyh: string = "";
|
|
91
96
|
aczfYhzh: string = "";
|
|
92
97
|
aczfZhmc: string = "";
|
|
93
|
-
aczfMemo: string = "";
|
|
94
|
-
yzzfTxdz: string = "";
|
|
95
|
-
yihaSqkh: string = "";
|
|
96
|
-
yihaSqmm: string = "";
|
|
97
|
-
yihaCzkh: string = "";
|
|
98
|
-
yihaCzmm: string = "";
|
|
99
|
-
yihaTxdz: string = "";
|
|
100
|
-
yihaQmdz: string = "";
|
|
101
|
-
yihaWjdz: string = "";
|
|
102
98
|
aczfLiha: string = "";
|
|
99
|
+
aczfMemo: string = "";
|
|
100
|
+
yzzfTxdz: string = ""; // #支付地址
|
|
101
|
+
yihaSqkh: string = ""; // #授权客户
|
|
102
|
+
yihaSqmm: string = ""; // #授权密码
|
|
103
|
+
yihaCzkh: string = ""; // #操作客户
|
|
104
|
+
yihaCzmm: string = ""; // #操作密码
|
|
105
|
+
yihaTxdz: string = ""; // #通读地址
|
|
106
|
+
yihaQmdz: string = ""; // #签名地址
|
|
107
|
+
yihaWjdz: string = ""; // #文件地址
|
|
108
|
+
yihaQydm: string = ""; // #应答代码
|
|
103
109
|
ysdwText: string = "";
|
|
110
|
+
asCznbcb: number = 0;
|
|
111
|
+
asDzyzyh: number = 0;
|
|
104
112
|
srvr4ftp: string = "";
|
|
105
113
|
port4ftp: string = "";
|
|
106
114
|
user4ftp: string = "";
|
|
107
115
|
pswd4ftp: string = "";
|
|
108
116
|
file4ftp: string = "";
|
|
109
|
-
|
|
110
|
-
|
|
117
|
+
envrType: number = 0;
|
|
118
|
+
uses4TLS: number = 0;
|
|
119
|
+
useBatch: number = 0; // #批量支付
|
|
120
|
+
encryKey: string = ""; // #国密密钥
|
|
121
|
+
envrBizh: string = ""; // #币种标识 (新增)
|
|
111
122
|
sourceDW: string = "";
|
|
112
123
|
unitIndx: number = 0;
|
|
113
|
-
|
|
114
|
-
|
|
124
|
+
unitMain: number = 0;
|
|
125
|
+
typeText: string = "";
|
|
115
126
|
listYSDW: IUnitResponse[] = [];
|
|
116
127
|
}
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
import { IWlzfBillResponse } from "./IWlzfBillResponse";
|
|
2
|
+
|
|
3
|
+
export interface IWlzfMainResponse {
|
|
4
|
+
whoBuild: number;
|
|
5
|
+
userIndx: number;
|
|
6
|
+
wlzfIndx: number;
|
|
7
|
+
parentID: number;
|
|
8
|
+
hashCode: number;
|
|
9
|
+
dataLevl: number;
|
|
10
|
+
dataStat: number;
|
|
11
|
+
dataOrdr: number;
|
|
12
|
+
dataDate: number;
|
|
13
|
+
dataTime: number;
|
|
14
|
+
dataHide: number;
|
|
15
|
+
dataFrom: number;
|
|
16
|
+
kjndKJQJ: number;
|
|
17
|
+
dataGUID: string;
|
|
18
|
+
mastName: string;
|
|
19
|
+
mastGUID: string;
|
|
20
|
+
userMain: number;
|
|
21
|
+
createBy: string;
|
|
22
|
+
createAt: number;
|
|
23
|
+
updateBy: string;
|
|
24
|
+
updateAt: number;
|
|
25
|
+
deleteBy: string;
|
|
26
|
+
deleteAt: number;
|
|
27
|
+
queuesBy: number;
|
|
28
|
+
entityID: string;
|
|
29
|
+
wlzfUses: string;
|
|
30
|
+
wlzfMemo: string;
|
|
31
|
+
wlzfStat: number;
|
|
32
|
+
wlzfDone: number;
|
|
33
|
+
wlzfType: number;
|
|
34
|
+
wlzfDate: number;
|
|
35
|
+
wlzfCode: string;
|
|
36
|
+
wlzfSbyy: string;
|
|
37
|
+
billSize: number;
|
|
38
|
+
menuMain: number;
|
|
39
|
+
wlzfEnvr: number;
|
|
40
|
+
menuUUID: string;
|
|
41
|
+
tablFrom: string;
|
|
42
|
+
acnoZhmc: string;
|
|
43
|
+
acnoYhzh: string;
|
|
44
|
+
acnoKhyh: string;
|
|
45
|
+
wlzfFrom: number;
|
|
46
|
+
wlzfBfyy: string;
|
|
47
|
+
unitMain: number;
|
|
48
|
+
deptMain: number;
|
|
49
|
+
billCode: string;
|
|
50
|
+
billUUID: string;
|
|
51
|
+
billMain: number;
|
|
52
|
+
outMoney: number;
|
|
53
|
+
rqStream: string;
|
|
54
|
+
rpStream: string;
|
|
55
|
+
commitBy: string;
|
|
56
|
+
commitAt: number;
|
|
57
|
+
asMainly: number; // #是否主单,{1:主单,0:补发}
|
|
58
|
+
sysClasc: number;
|
|
59
|
+
acnoMain: number;
|
|
60
|
+
sameType: number; // #是否同行
|
|
61
|
+
originBy: number; // #补发主单
|
|
62
|
+
returnBy: string; // #返回主单
|
|
63
|
+
coverURL: string;
|
|
64
|
+
touchURL: string;
|
|
65
|
+
deptName: string;
|
|
66
|
+
sourceBM: string;
|
|
67
|
+
unitText: string;
|
|
68
|
+
sourceDW: string;
|
|
69
|
+
lastDate: number;
|
|
70
|
+
lastTime: number;
|
|
71
|
+
flowMain: number;
|
|
72
|
+
flowNode: number;
|
|
73
|
+
flowStat: number;
|
|
74
|
+
didFirst: number;
|
|
75
|
+
lastMemo: string;
|
|
76
|
+
userName: string;
|
|
77
|
+
userGUID: string;
|
|
78
|
+
|
|
79
|
+
listBill: IWlzfBillResponse[];
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
export class TWlzfMainResponse implements IWlzfMainResponse {
|
|
83
|
+
whoBuild: number = 0;
|
|
84
|
+
userIndx: number = 0;
|
|
85
|
+
wlzfIndx: number = 0;
|
|
86
|
+
parentID: number = 0;
|
|
87
|
+
hashCode: number = 0;
|
|
88
|
+
dataLevl: number = 0;
|
|
89
|
+
dataStat: number = 0;
|
|
90
|
+
dataOrdr: number = 0;
|
|
91
|
+
dataDate: number = 0;
|
|
92
|
+
dataTime: number = 0;
|
|
93
|
+
dataHide: number = 0;
|
|
94
|
+
dataFrom: number = 0;
|
|
95
|
+
kjndKJQJ: number = 0;
|
|
96
|
+
dataGUID: string = "";
|
|
97
|
+
mastName: string = "";
|
|
98
|
+
mastGUID: string = "";
|
|
99
|
+
userMain: number = 0;
|
|
100
|
+
createBy: string = "";
|
|
101
|
+
createAt: number = 0;
|
|
102
|
+
updateBy: string = "";
|
|
103
|
+
updateAt: number = 0;
|
|
104
|
+
deleteBy: string = "";
|
|
105
|
+
deleteAt: number = 0;
|
|
106
|
+
queuesBy: number = 0;
|
|
107
|
+
entityID: string = "";
|
|
108
|
+
wlzfUses: string = "";
|
|
109
|
+
wlzfMemo: string = "";
|
|
110
|
+
wlzfStat: number = 0;
|
|
111
|
+
wlzfDone: number = 0;
|
|
112
|
+
wlzfType: number = 0;
|
|
113
|
+
wlzfDate: number = 0;
|
|
114
|
+
wlzfCode: string = "";
|
|
115
|
+
wlzfSbyy: string = "";
|
|
116
|
+
billSize: number = 0;
|
|
117
|
+
menuMain: number = 0;
|
|
118
|
+
wlzfEnvr: number = 0;
|
|
119
|
+
menuUUID: string = "";
|
|
120
|
+
tablFrom: string = "";
|
|
121
|
+
acnoZhmc: string = "";
|
|
122
|
+
acnoYhzh: string = "";
|
|
123
|
+
acnoKhyh: string = "";
|
|
124
|
+
wlzfFrom: number = 0;
|
|
125
|
+
wlzfBfyy: string = "";
|
|
126
|
+
unitMain: number = 0;
|
|
127
|
+
deptMain: number = 0;
|
|
128
|
+
billCode: string = "";
|
|
129
|
+
billUUID: string = "";
|
|
130
|
+
billMain: number = 0;
|
|
131
|
+
outMoney: number = 0;
|
|
132
|
+
rqStream: string = "";
|
|
133
|
+
rpStream: string = "";
|
|
134
|
+
commitBy: string = "";
|
|
135
|
+
commitAt: number = 0;
|
|
136
|
+
asMainly: number = 0;
|
|
137
|
+
sysClasc: number = 0;
|
|
138
|
+
acnoMain: number = 0;
|
|
139
|
+
sameType: number = 0;
|
|
140
|
+
originBy: number = 0;
|
|
141
|
+
returnBy: string = "";
|
|
142
|
+
coverURL: string = "";
|
|
143
|
+
touchURL: string = "";
|
|
144
|
+
deptName: string = "";
|
|
145
|
+
sourceBM: string = "";
|
|
146
|
+
unitText: string = "";
|
|
147
|
+
sourceDW: string = "";
|
|
148
|
+
lastDate: number = 0;
|
|
149
|
+
lastTime: number = 0;
|
|
150
|
+
flowMain: number = 0;
|
|
151
|
+
flowNode: number = 0;
|
|
152
|
+
flowStat: number = 0;
|
|
153
|
+
didFirst: number = 0;
|
|
154
|
+
lastMemo: string = "";
|
|
155
|
+
userName: string = "";
|
|
156
|
+
userGUID: string = "";
|
|
157
|
+
|
|
158
|
+
listBill: IWlzfBillResponse[] = [];
|
|
159
|
+
}
|
package/src/wlzf/index.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { IWlzfEnvrResponse, TWlzfEnvrResponse } from "./IWlzfEnvrResponse";
|
|
2
2
|
import { ILihaResponse, TLihaResponse } from "./ILihaResponse";
|
|
3
|
+
import { IWlzfMainResponse, TWlzfMainResponse } from "./IWlzfMainResponse";
|
|
4
|
+
import { IWlzfBillResponse, TWlzfBillResponse } from "./IWlzfBillResponse";
|
|
3
5
|
|
|
4
|
-
export { type IWlzfEnvrResponse,
|
|
6
|
+
export { TWlzfEnvrResponse, TWlzfMainResponse, TWlzfBillResponse, TLihaResponse, type IWlzfEnvrResponse, type IWlzfMainResponse, type IWlzfBillResponse, type ILihaResponse };
|