@ningboyz/apis 1.1.173 → 1.1.175
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 +2 -2
- package/packages/card/types.ts +6 -0
- package/packages/wlzf/main.ts +10 -1
- package/packages/wlzf/types.ts +12 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.175",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "宁波甬政请求库",
|
|
6
6
|
"author": "nbyt-syq",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"registry": "https://registry.npmjs.org/"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@ningboyz/types": "1.1.
|
|
20
|
+
"@ningboyz/types": "1.1.175",
|
|
21
21
|
"axios": "1.8.4"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {}
|
package/packages/card/types.ts
CHANGED
|
@@ -189,12 +189,14 @@ export interface ICardMainUploadd2Querys {
|
|
|
189
189
|
sourcend: number;
|
|
190
190
|
zclbtype: number;
|
|
191
191
|
sysclasc: number;
|
|
192
|
+
menuuuid: string;
|
|
192
193
|
}
|
|
193
194
|
|
|
194
195
|
export class TCardMainUploadd2Querys implements ICardMainUploadd2Querys {
|
|
195
196
|
sourcend: number = -1;
|
|
196
197
|
zclbtype: number = -1;
|
|
197
198
|
sysclasc: number = 0;
|
|
199
|
+
menuuuid: string = "";
|
|
198
200
|
}
|
|
199
201
|
|
|
200
202
|
|
|
@@ -202,12 +204,14 @@ export interface ICardMainUploadd3Querys {
|
|
|
202
204
|
sourcend: number;
|
|
203
205
|
zclbtype: number;
|
|
204
206
|
sysclasc: number;
|
|
207
|
+
menuuuid: string;
|
|
205
208
|
}
|
|
206
209
|
|
|
207
210
|
export class TCardMainUploadd3Querys implements ICardMainUploadd3Querys {
|
|
208
211
|
sourcend: number = -1;
|
|
209
212
|
zclbtype: number = -1;
|
|
210
213
|
sysclasc: number = 0;
|
|
214
|
+
menuuuid: string = "";
|
|
211
215
|
}
|
|
212
216
|
|
|
213
217
|
|
|
@@ -215,12 +219,14 @@ export interface ICardMainUploadd4Querys {
|
|
|
215
219
|
sourcend: number;
|
|
216
220
|
zclbtype: number;
|
|
217
221
|
sysclasc: number;
|
|
222
|
+
menuuuid: string;
|
|
218
223
|
}
|
|
219
224
|
|
|
220
225
|
export class TCardMainUploadd4Querys implements ICardMainUploadd4Querys {
|
|
221
226
|
sourcend: number = -1;
|
|
222
227
|
zclbtype: number = -1;
|
|
223
228
|
sysclasc: number = 0;
|
|
229
|
+
menuuuid: string = "";
|
|
224
230
|
}
|
|
225
231
|
|
|
226
232
|
export interface ICardMainUpdated4Querys {
|
package/packages/wlzf/main.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { TWlzf } from "@ningboyz/types";
|
|
2
2
|
import type { HttpRequest } from "../axios";
|
|
3
|
-
import { TWlzfSelectdbQuerys } from "./types";
|
|
3
|
+
import { TWlzfDetaildbQuerys, TWlzfSelectdbQuerys } from "./types";
|
|
4
4
|
|
|
5
5
|
class TenvrRequest {
|
|
6
6
|
private httpRequest: HttpRequest;
|
|
@@ -43,6 +43,15 @@ class TenvrRequest {
|
|
|
43
43
|
selectdb(querys: TWlzfSelectdbQuerys) {
|
|
44
44
|
return this.httpRequest.post<TWlzf.IWlzfEnvrResponse[]>("/gapi/wlzf/tenvr/selectdb", querys, undefined);
|
|
45
45
|
}
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* 获取支付环境详情
|
|
49
|
+
* @param querys
|
|
50
|
+
* @returns
|
|
51
|
+
*/
|
|
52
|
+
detaildb(querys: TWlzfDetaildbQuerys) {
|
|
53
|
+
return this.httpRequest.post<TWlzf.IWlzfEnvrResponse[]>("/gapi/wlzf/tenvr/detaildb", querys, undefined);
|
|
54
|
+
}
|
|
46
55
|
}
|
|
47
56
|
|
|
48
57
|
export default TenvrRequest;
|
package/packages/wlzf/types.ts
CHANGED
|
@@ -5,7 +5,7 @@ export interface IWlzfSelectdbQuerys {
|
|
|
5
5
|
|
|
6
6
|
export class TWlzfSelectdbQuerys implements IWlzfSelectdbQuerys {
|
|
7
7
|
sourcend: number = -1;
|
|
8
|
-
sourceid: number = -1;
|
|
8
|
+
sourceid: number = -1;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
export interface IWlzfInsertdbQuerys {
|
|
@@ -36,4 +36,15 @@ export interface IWlzfDeletedbQuerys {
|
|
|
36
36
|
export class TWlzfDeletedbQuerys implements IWlzfDeletedbQuerys {
|
|
37
37
|
sourcend: number = -1;
|
|
38
38
|
sourceid: number = -1;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
export interface IWlzfDetaildbQuerys {
|
|
43
|
+
sourcend: number;
|
|
44
|
+
entityid: string;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export class TWlzfDetaildbQuerys implements IWlzfDetaildbQuerys {
|
|
48
|
+
sourcend: number = -1;
|
|
49
|
+
entityid: string = "-1";
|
|
39
50
|
}
|