@ningboyz/apis 1.4.56 → 1.4.57

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.4.56",
3
+ "version": "1.4.57",
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.4.56",
20
+ "@ningboyz/types": "1.4.57",
21
21
  "axios": "1.8.4",
22
22
  "lodash": "^4.17.21"
23
23
  },
@@ -76,4 +76,11 @@ export interface ILoadNsdwSyncnsryQuerys {
76
76
 
77
77
  export class TLoadNsdwSyncnsryQuerys implements ILoadNsdwSyncnsryQuerys {
78
78
  unitmain: number = -1;
79
+ }
80
+
81
+ export interface ILoadZydwSelectdbQuerys{
82
+
83
+ }
84
+ export class TLoadZydwSelectdbQuerys implements ILoadZydwSelectdbQuerys{
85
+
79
86
  }
@@ -1,5 +1,6 @@
1
1
  import { TLoad } from "@ningboyz/types";
2
2
  import type { HttpRequest } from "../axios";
3
+ import { ILoadZydwSelectdbQuerys } from "./types";
3
4
 
4
5
  class ZydwRequest {
5
6
  private httpRequest: HttpRequest;
@@ -7,8 +8,8 @@ class ZydwRequest {
7
8
  this.httpRequest = httpRequest;
8
9
  }
9
10
 
10
- selectdb() {
11
- return this.httpRequest.post<TLoad.ILoadZydwResponse[]>("/load/tyqkm/selectdb", undefined, undefined);
11
+ selectdb(querys: ILoadZydwSelectdbQuerys) {
12
+ return this.httpRequest.post<TLoad.ILoadZydwResponse[]>("/gapi/load/tzydw/selectdb", querys, undefined);
12
13
  }
13
14
  }
14
15