@ningboyz/apis 1.4.198 → 1.5.0

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.198",
3
+ "version": "1.5.0",
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.198",
20
+ "@ningboyz/types": "1.5.0",
21
21
  "axios": "1.8.4",
22
22
  "lodash": "^4.17.21"
23
23
  },
@@ -317,3 +317,18 @@ export class THzcbMainCloneOneQuerys implements IHzcbMainCloneOneQuerys {
317
317
  sourcend: number = -1;
318
318
  hzcbmain: number = -1;
319
319
  }
320
+
321
+
322
+ export interface IHzcbXmykFinishedQuerys {
323
+ }
324
+ export class THzcbXmykFinishedQuerys implements IHzcbXmykFinishedQuerys {
325
+ }
326
+
327
+
328
+ /** ========== xmtz ========== */
329
+ export interface IHzcbXmtzFinishedQuerys {
330
+
331
+ }
332
+ export class THzcbXmtzFinishedQuerys implements IHzcbXmtzFinishedQuerys {
333
+
334
+ }
@@ -1,6 +1,6 @@
1
1
  import { THzcb } from "@ningboyz/types";
2
2
  import type { HttpRequest } from "../axios";
3
- import { IHzcbXmtzDetaildbQuerys, IHzcbXmtzSelectdbQuerys } from "./types";
3
+ import { IHzcbXmtzDetaildbQuerys, IHzcbXmtzFinishedQuerys, IHzcbXmtzSelectdbQuerys } from "./types";
4
4
 
5
5
  class XmtzRequest {
6
6
  private httpRequest: HttpRequest;
@@ -52,6 +52,11 @@ class XmtzRequest {
52
52
  deletedb(params: object) {
53
53
  return this.httpRequest.post<THzcb.IHzcbXmtzResponse[]>("/gapi/hzcb/txmtz/deletedb", undefined, params);
54
54
  }
55
+
56
+ // 获取已处理投资计划列表
57
+ finished(querys: IHzcbXmtzFinishedQuerys) {
58
+ return this.httpRequest.post<THzcb.IHzcbXmtzResponse[]>("/gapi/hzcb/txmtz/finished", querys, undefined);
59
+ }
55
60
  }
56
61
 
57
62
  export default XmtzRequest;
@@ -1,6 +1,6 @@
1
1
  import { THzcb } from "@ningboyz/types";
2
2
  import type { HttpRequest } from "../axios";
3
- import { IHzcbXmykDeletedbQuerys, IHzcbXmykDetaildbQuerys, IHzcbXmykInsertdbQuerys, IHzcbXmykSelectdbQuerys, IHzcbXmykUpdatedbQuerys } from "./types";
3
+ import { IHzcbXmykDeletedbQuerys, IHzcbXmykDetaildbQuerys, IHzcbXmykFinishedQuerys, IHzcbXmykInsertdbQuerys, IHzcbXmykSelectdbQuerys, IHzcbXmykUpdatedbQuerys } from "./types";
4
4
 
5
5
  class XmykRequest {
6
6
  private httpRequest: HttpRequest;
@@ -52,6 +52,11 @@ class XmykRequest {
52
52
  deletedb(querys: IHzcbXmykDeletedbQuerys, params: object) {
53
53
  return this.httpRequest.post<THzcb.IHzcbXmykResponse[]>("/gapi/hzcb/txmyk/deletedb", querys, params);
54
54
  }
55
+
56
+ // 获取已处理用款计划列表
57
+ finished(querys: IHzcbXmykFinishedQuerys) {
58
+ return this.httpRequest.post<THzcb.IHzcbXmykResponse[]>("/gapi/hzcb/txmyk/finished", querys, undefined);
59
+ }
55
60
  }
56
61
 
57
62
  export default XmykRequest;
@@ -59,7 +59,7 @@ class NotiRequest {
59
59
  }
60
60
 
61
61
  get4item(querys: IHznjNotiGet4itemQuerys, params: object) {
62
- return this.httpRequest.post<THznj.IHznjNotiResponse[]>("/gapi/hznj/tnoti/get4item", querys, params);
62
+ return this.httpRequest.post<THznj.IHznjXmsyResponse[]>("/gapi/hznj/tnoti/get4item", querys, params);
63
63
  }
64
64
 
65
65
  gettotal(querys: IHznjNotiGetTotalQuerys, params: object) {