@ningboyz/apis 1.6.74 → 1.6.75

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.6.74",
3
+ "version": "1.6.75",
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.6.74",
20
+ "@ningboyz/types": "1.6.75",
21
21
  "axios": "1.8.4",
22
22
  "lodash": "^4.17.21"
23
23
  },
@@ -9,6 +9,7 @@ import {
9
9
  IHznjNotiGet4itemQuerys,
10
10
  IHznjNotiGetTotalQuerys,
11
11
  IHznjNotiInsertdbQuerys,
12
+ IHznjNotiNextNodeQuerys,
12
13
  IHznjNotiSelectdbQuerys,
13
14
  IHznjNotiSelectmxQuerys,
14
15
  IHznjNotiUpdatedbQuerys,
@@ -67,6 +68,12 @@ class NotiRequest {
67
68
  return this.httpRequest.post<THznj.IHznjNotiResponse[]>("/gapi/hznj/tnoti/gettotal", querys, params);
68
69
  }
69
70
 
71
+
72
+ // 获取下一节点的用户
73
+ nextnode(querys: IHznjNotiNextNodeQuerys, params: object) {
74
+ return this.httpRequest.post<THznj.IHznjNotiResponse[]>("/gapi/hznj/tnoti/nextnode", querys, params);
75
+ }
76
+
70
77
  /**
71
78
  * 批量修改任务通知明细报告数量
72
79
  * */
@@ -470,12 +470,23 @@ export class THznjNotiGet4itemQuerys implements IHznjNotiGet4itemQuerys {
470
470
  export interface IHznjNotiGetTotalQuerys {
471
471
  sourcend: number;
472
472
  nodename: string;
473
- fromnodename: string;
474
473
  }
475
474
 
476
475
  export class THznjNotiGetTotalQuerys implements IHznjNotiGetTotalQuerys {
477
476
  sourcend: number = -1;
478
477
  nodename: string = "";
478
+ }
479
+
480
+
481
+ export interface IHznjNotiNextNodeQuerys {
482
+ sourcend: number;
483
+ nodename: string;
484
+ fromnodename: string;
485
+ }
486
+
487
+ export class THznjNotiNextNodeQuerys implements IHznjNotiNextNodeQuerys {
488
+ sourcend: number = -1;
489
+ nodename: string = "";
479
490
  fromnodename: string = "";
480
491
  }
481
492