@ningboyz/apis 1.4.162 → 1.4.163
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 +2 -2
- package/packages/hznj/noti.ts +9 -1
- package/packages/hznj/type.ts +11 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.163",
|
|
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.
|
|
20
|
+
"@ningboyz/types": "1.4.163",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
package/packages/hznj/noti.ts
CHANGED
|
@@ -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;
|
package/packages/hznj/type.ts
CHANGED
|
@@ -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;
|