@ningboyz/apis 1.4.156 → 1.4.158

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.156",
3
+ "version": "1.4.158",
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.156",
20
+ "@ningboyz/types": "1.4.158",
21
21
  "axios": "1.8.4",
22
22
  "lodash": "^4.17.21"
23
23
  },
@@ -12,7 +12,7 @@ class SyskjndRequest {
12
12
  * @returns
13
13
  */
14
14
  selectdb() {
15
- return this.httpRequest.post<TCore.ISourceItem[]>("/core/tsyskjnd/selectdb");
15
+ return this.httpRequest.post<TCore.ISysKjndResponse[]>("/core/tsyskjnd/selectdb");
16
16
  }
17
17
  }
18
18
 
@@ -5,7 +5,9 @@ import {
5
5
  IHznjNotiDeletedbQuerys,
6
6
  IHznjNotiDetailQuerys,
7
7
  IHznjNotiFinishedQuerys,
8
- IHznjNotiFinishmxQuerys, IHznjNotiGet4itemQuerys,
8
+ IHznjNotiFinishmxQuerys,
9
+ IHznjNotiGet4itemQuerys,
10
+ IHznjNotiGetTotalQuerys,
9
11
  IHznjNotiInsertdbQuerys,
10
12
  IHznjNotiSelectdbQuerys,
11
13
  IHznjNotiSelectmxQuerys,
@@ -58,6 +60,10 @@ class NotiRequest {
58
60
  get4item(querys: IHznjNotiGet4itemQuerys, params: object) {
59
61
  return this.httpRequest.post<THznj.IHznjNotiResponse[]>("/gapi/hznj/tnoti/get4item", querys, params);
60
62
  }
63
+
64
+ gettotal(querys: IHznjNotiGetTotalQuerys, params: object) {
65
+ return this.httpRequest.post<THznj.IHznjNotiResponse[]>("/gapi/hznj/tnoti/gettotal", querys, params);
66
+ }
61
67
  }
62
68
 
63
69
  export default NotiRequest;
@@ -443,6 +443,17 @@ export class THznjNotiGet4itemQuerys implements IHznjNotiGet4itemQuerys {
443
443
  exceptid: number = -1;
444
444
  }
445
445
 
446
+
447
+ export interface IHznjNotiGetTotalQuerys {
448
+ sourcend: number;
449
+ nodename: string;
450
+ }
451
+
452
+ export class THznjNotiGetTotalQuerys implements IHznjNotiGetTotalQuerys {
453
+ sourcend: number = -1;
454
+ nodename: string = "";
455
+ }
456
+
446
457
  export interface IHznjNotiDetailQuerys {
447
458
  sourcend: number;
448
459
  notiindx: number;