@ningboyz/apis 1.3.76 → 1.3.77

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.3.76",
3
+ "version": "1.3.77",
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.76",
20
+ "@ningboyz/types": "1.3.77",
21
21
  "axios": "1.8.4",
22
22
  "lodash": "^4.17.21"
23
23
  },
@@ -1,6 +1,6 @@
1
1
  import { TNoti } from "@ningboyz/types";
2
2
  import type { HttpRequest } from "../axios";
3
- import { INotiMainDetaildbQuerys, INotiMainSelectdbQuerys } from "./types";
3
+ import { INotiMainDetaildbQuerys, INotiMainFinishedQuerys, INotiMainSelectdbQuerys } from "./types";
4
4
 
5
5
  class ParaRequest {
6
6
  private httpRequest: HttpRequest;
@@ -58,8 +58,8 @@ class ParaRequest {
58
58
  * 获取已办
59
59
  * @returns
60
60
  */
61
- finished() {
62
- return this.httpRequest.post<TNoti.INotiMainResponse[]>("/noti/tmain/finished");
61
+ finished(querys: INotiMainFinishedQuerys) {
62
+ return this.httpRequest.post<TNoti.INotiMainResponse[]>("/noti/tmain/finished", querys);
63
63
  }
64
64
  }
65
65
 
@@ -24,3 +24,11 @@ export interface INotiMainDetaildbQuerys {
24
24
  export class TNotiMainDetaildbQuerys implements INotiMainDetaildbQuerys {
25
25
  notimain: number = -1;
26
26
  }
27
+
28
+ export interface INotiMainFinishedQuerys {
29
+ syspartc: number;
30
+ }
31
+
32
+ export class TNotiMainFinishedQuerys implements INotiMainFinishedQuerys {
33
+ syspartc: number = -1;
34
+ }