@ningboyz/apis 1.2.163 → 1.2.164

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.2.163",
3
+ "version": "1.2.164",
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.2.163",
20
+ "@ningboyz/types": "1.2.164",
21
21
  "axios": "1.8.4"
22
22
  },
23
23
  "devDependencies": {}
@@ -1,6 +1,6 @@
1
1
  import { THznk } from "@ningboyz/types";
2
2
  import { HttpRequest } from "../axios";
3
- import { IHznkFydwDeletedbQuerys, IHznkFydwDetailQuerys, IHznkFydwFinishedQuerys, IHznkFydwInsertdbQuerys, IHznkFydwSelectdbQuerys, IHznkFydwUpdatedbQuerys } from "./type";
3
+ import { IHznkFydwDeletedbQuerys, IHznkFydwDetailQuerys, IHznkFydwFinishedQuerys, IHznkFydwInsertdbQuerys, IHznkFydwSelectdbQuerys, IHznkFydwSelectglQuerys, IHznkFydwUpdatedbQuerys } from "./type";
4
4
 
5
5
  class FydwRequest {
6
6
  private httpRequest: HttpRequest;
@@ -31,6 +31,9 @@ class FydwRequest {
31
31
  finished(querys: IHznkFydwFinishedQuerys) {
32
32
  return this.httpRequest.post<THznk.IHznkFydwResponse[]>("/gapi/hznk/tfydw/finished", querys, undefined);
33
33
  }
34
+ selectgl(querys: IHznkFydwSelectglQuerys) {
35
+ return this.httpRequest.post<THznk.IHznkFydwResponse[]>("/gapi/hznk/tfydw/selectgl", querys, undefined);
36
+ }
34
37
  }
35
38
 
36
39
  export default FydwRequest;
@@ -187,6 +187,16 @@ export class THznkFydwFinishedQuerys implements IHznkFydwFinishedQuerys {
187
187
  sourcend: number = -1;
188
188
  }
189
189
 
190
+ export interface IHznkFydwSelectglQuerys {
191
+ sourcend: number;
192
+ withflow: number;
193
+ }
194
+
195
+ export class THznkFydwSelectglQuerys implements IHznkFydwSelectglQuerys {
196
+ sourcend: number = -1;
197
+ withflow: number = -1;
198
+ }
199
+
190
200
  export interface IHznkFydwInsertdbQuerys {
191
201
  sourcend: number;
192
202
  }