@ningboyz/apis 1.5.185 → 1.5.186
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/wzpz/k8km.ts +19 -1
- package/packages/wzpz/types.ts +34 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.186",
|
|
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.5.
|
|
20
|
+
"@ningboyz/types": "1.5.186",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
package/packages/wzpz/k8km.ts
CHANGED
|
@@ -8,7 +8,10 @@ import {
|
|
|
8
8
|
IWzpzK8kmSelectdbQuerys,
|
|
9
9
|
IWzpzK8kmSelectdcQuerys,
|
|
10
10
|
IWzpzK8kmSelectdyQuerys,
|
|
11
|
-
|
|
11
|
+
IWzpzK8kmSelectuserbodyQuerys,
|
|
12
|
+
IWzpzK8kmUpdatedbQuerys,
|
|
13
|
+
IWzpzK8kmUploadd2Querys,
|
|
14
|
+
IWzpzUserBodyDeletedbQuerys
|
|
12
15
|
} from "./types";
|
|
13
16
|
|
|
14
17
|
class K8kmRequest {
|
|
@@ -79,6 +82,21 @@ class K8kmRequest {
|
|
|
79
82
|
detaild2(querys: IWzpzK8kmDetaild2Querys, params: object) {
|
|
80
83
|
return this.httpRequest.post<TWzpz.IWzpzItemResponse[]>("/gapi/wzpz/tk8km/detaild2", querys, params);
|
|
81
84
|
}
|
|
85
|
+
|
|
86
|
+
// 批量新增号型
|
|
87
|
+
uploadd2(querys: IWzpzK8kmUploadd2Querys, params: object) {
|
|
88
|
+
return this.httpRequest.post<TWzpz.IWzpzUserBodyResponse[]>("/gapi/wzpz/tk8km/userbody/uploaddb", querys, params);
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
// 查询号型
|
|
92
|
+
selectuserbody(querys: IWzpzK8kmSelectuserbodyQuerys, params: object) {
|
|
93
|
+
return this.httpRequest.post<TWzpz.WzpzUserBodyResponse[]>("/gapi/wzpz/tk8km/userbody/selectdb", querys, params);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
// 删除号型
|
|
97
|
+
deletedbUserbody(querys: IWzpzUserBodyDeletedbQuerys, params: object) {
|
|
98
|
+
return this.httpRequest.post<TWzpz.WzpzUserBodyResponse[]>("/gapi/wzpz/tk8km/userbody/deletedb", querys, params);
|
|
99
|
+
}
|
|
82
100
|
}
|
|
83
101
|
|
|
84
102
|
export default K8kmRequest;
|
package/packages/wzpz/types.ts
CHANGED
|
@@ -361,3 +361,37 @@ export class TWzpzK8kmDetaild2Querys implements IWzpzK8kmDetaild2Querys {
|
|
|
361
361
|
sourceid: number = -1;
|
|
362
362
|
k8kmkmid: number = -1;
|
|
363
363
|
}
|
|
364
|
+
|
|
365
|
+
export interface IWzpzK8kmUploadd2Querys {
|
|
366
|
+
sourcend: number;
|
|
367
|
+
sourceid: number;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
export class TWzpzK8kmUploadd2Querys implements IWzpzK8kmUploadd2Querys {
|
|
371
|
+
sourcend: number = -1;
|
|
372
|
+
sourceid: number = -1;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
export interface IWzpzK8kmSelectuserbodyQuerys {
|
|
376
|
+
sourcend: number;
|
|
377
|
+
sourceid: number;
|
|
378
|
+
k8kmkmid: number;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
export class TWzpzK8kmSelectuserbodyQuerys implements IWzpzK8kmSelectuserbodyQuerys {
|
|
382
|
+
sourcend: number = -1;
|
|
383
|
+
sourceid: number = -1;
|
|
384
|
+
k8kmkmid: number = -1;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
export interface IWzpzUserBodyDeletedbQuerys {
|
|
388
|
+
sourcend: number;
|
|
389
|
+
sourceid: number;
|
|
390
|
+
k8kmkmid: number;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
export class TWzpzUserBodyDeletedbQuerys implements IWzpzUserBodyDeletedbQuerys {
|
|
394
|
+
sourcend: number = -1;
|
|
395
|
+
sourceid: number = -1;
|
|
396
|
+
k8kmkmid: number = -1;
|
|
397
|
+
}
|