@ningboyz/apis 1.4.162 → 1.4.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.4.162",
3
+ "version": "1.4.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.4.162",
20
+ "@ningboyz/types": "1.4.164",
21
21
  "axios": "1.8.4",
22
22
  "lodash": "^4.17.21"
23
23
  },
@@ -25,4 +25,4 @@ class GamsRequest {
25
25
  }
26
26
 
27
27
  export default GamsRequest;
28
- export * from "./type";
28
+ export * from "./types";
@@ -12,7 +12,8 @@ import {
12
12
  IHznjNotiSelectdbQuerys,
13
13
  IHznjNotiSelectmxQuerys,
14
14
  IHznjNotiUpdatedbQuerys,
15
- IHznjNotiUpdateztQuerys
15
+ IHznjNotiUpdateztQuerys,
16
+ IHznjNotiUploadddQuerys
16
17
  } from "./type";
17
18
 
18
19
  class NotiRequest {
@@ -64,6 +65,13 @@ class NotiRequest {
64
65
  gettotal(querys: IHznjNotiGetTotalQuerys, params: object) {
65
66
  return this.httpRequest.post<THznj.IHznjNotiResponse[]>("/gapi/hznj/tnoti/gettotal", querys, params);
66
67
  }
68
+
69
+ /**
70
+ * 批量修改任务通知明细报告数量
71
+ * */
72
+ uploaddd(querys: IHznjNotiUploadddQuerys, params: object) {
73
+ return this.httpRequest.post<THznj.IHznjNotiResponse[]>("/gapi/hznj/tnoti/uploaddd", querys, params);
74
+ }
67
75
  }
68
76
 
69
77
  export default NotiRequest;
@@ -454,6 +454,17 @@ export class THznjNotiGetTotalQuerys implements IHznjNotiGetTotalQuerys {
454
454
  nodename: string = "";
455
455
  }
456
456
 
457
+
458
+ export interface IHznjNotiUploadddQuerys {
459
+ sourcend: number;
460
+ billmemo: string;
461
+ }
462
+
463
+ export class THznjNotiUploadddQuerys implements IHznjNotiUploadddQuerys {
464
+ sourcend: number = -1;
465
+ billmemo: string = "";
466
+ }
467
+
457
468
  export interface IHznjNotiDetailQuerys {
458
469
  sourcend: number;
459
470
  notiindx: number;