@ningboyz/apis 1.0.62 → 1.0.63
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.63",
|
|
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.0.
|
|
20
|
+
"@ningboyz/types": "1.0.63",
|
|
21
21
|
"axios": "1.8.4"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {}
|
package/packages/card/index.ts
CHANGED
|
@@ -10,7 +10,7 @@ import FormRequest from "./form";
|
|
|
10
10
|
import ZczjRequest from "./zczj";
|
|
11
11
|
import P4pzRequest from "./p4pz";
|
|
12
12
|
import ZczjPropRequest from "./zczjProp";
|
|
13
|
-
import
|
|
13
|
+
import TzclbgblbRequest from "./tzclbgblb";
|
|
14
14
|
|
|
15
15
|
class CardRequest {
|
|
16
16
|
public gblb: GblbRequest;
|
|
@@ -24,7 +24,7 @@ class CardRequest {
|
|
|
24
24
|
public p4pz: P4pzRequest;
|
|
25
25
|
public zczj: ZczjRequest;
|
|
26
26
|
public zczjProp: ZczjPropRequest;
|
|
27
|
-
public
|
|
27
|
+
public tzclbgblb: TzclbgblbRequest;
|
|
28
28
|
|
|
29
29
|
constructor(config: IAxiosConfig) {
|
|
30
30
|
const request = createRequest(config);
|
|
@@ -39,7 +39,7 @@ class CardRequest {
|
|
|
39
39
|
this.p4pz = new P4pzRequest(request);
|
|
40
40
|
this.zczj = new ZczjRequest(request);
|
|
41
41
|
this.zczjProp = new ZczjPropRequest(request);
|
|
42
|
-
this.
|
|
42
|
+
this.tzclbgblb = new TzclbgblbRequest(request);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
|
|
@@ -19,7 +19,7 @@ class TzclbsortRequest {
|
|
|
19
19
|
* @returns
|
|
20
20
|
*/
|
|
21
21
|
selectdb(querys: ICardZclbsortSelectdbQuerys) {
|
|
22
|
-
return this.httpRequest.post<TCard.TSyszclbgblbResponse[]>("/gapi/card/
|
|
22
|
+
return this.httpRequest.post<TCard.TSyszclbgblbResponse[]>("/gapi/card/tzclbgblb/selectdb", querys, undefined);
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
/**
|
|
@@ -29,7 +29,7 @@ class TzclbsortRequest {
|
|
|
29
29
|
* @returns
|
|
30
30
|
*/
|
|
31
31
|
uploaddb(querys: ICardZclbsortUploaddbQuerys, params: TParams<TCard.TSyszclbgblbResponse[]>) {
|
|
32
|
-
return this.httpRequest.post<TCard.TSyszclbgblbResponse[]>("/gapi/card/
|
|
32
|
+
return this.httpRequest.post<TCard.TSyszclbgblbResponse[]>("/gapi/card/tzclbgblb/uploaddb", querys, params);
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
|