@ningboyz/apis 1.3.102 → 1.3.104
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 +8 -3
- package/packages/hznj/type.ts +8 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.104",
|
|
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.3.
|
|
20
|
+
"@ningboyz/types": "1.3.104",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
package/packages/hznj/noti.ts
CHANGED
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
IHznjNotiInsertdbQuerys,
|
|
10
10
|
IHznjNotiSelectdbQuerys,
|
|
11
11
|
IHznjNotiSelectmxQuerys,
|
|
12
|
-
IHznjNotiUpdatedbQuerys
|
|
12
|
+
IHznjNotiUpdatedbQuerys,
|
|
13
|
+
IHznjNotiUpdateztQuerys
|
|
13
14
|
} from "./type";
|
|
14
15
|
|
|
15
16
|
class NotiRequest {
|
|
@@ -43,11 +44,15 @@ class NotiRequest {
|
|
|
43
44
|
}
|
|
44
45
|
|
|
45
46
|
selectmx(querys: IHznjNotiSelectmxQuerys) {
|
|
46
|
-
return this.httpRequest.post<THznj.
|
|
47
|
+
return this.httpRequest.post<THznj.IHznjNotiBillResponse[]>("/gapi/hznj/tnoti/selectmx", querys, undefined);
|
|
47
48
|
}
|
|
48
49
|
|
|
49
50
|
finishmx(querys: IHznjNotiFinishmxQuerys) {
|
|
50
|
-
return this.httpRequest.post<THznj.
|
|
51
|
+
return this.httpRequest.post<THznj.IHznjNotiBillResponse[]>("/gapi/hznj/tnoti/finishmx", querys, undefined);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
updatezt(querys: IHznjNotiUpdateztQuerys, params: object) {
|
|
55
|
+
return this.httpRequest.post<THznj.IHznjNotiResponse[]>("/gapi/hznj/tnoti/updatezt", querys, params);
|
|
51
56
|
}
|
|
52
57
|
}
|
|
53
58
|
|
package/packages/hznj/type.ts
CHANGED
|
@@ -356,6 +356,14 @@ export class THznjNotiUpdatedbQuerys implements IHznjNotiUpdatedbQuerys {
|
|
|
356
356
|
sourcend: number = -1;
|
|
357
357
|
}
|
|
358
358
|
|
|
359
|
+
export interface IHznjNotiUpdateztQuerys {
|
|
360
|
+
sourcend: number;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
export class THznjNotiUpdateztQuerys implements IHznjNotiUpdateztQuerys {
|
|
364
|
+
sourcend: number = -1;
|
|
365
|
+
}
|
|
366
|
+
|
|
359
367
|
export interface IHznjNotiDetailQuerys {
|
|
360
368
|
sourcend: number;
|
|
361
369
|
notiindx: number;
|