@ningboyz/apis 1.7.19 → 1.7.20

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.7.19",
3
+ "version": "1.7.20",
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.7.19",
20
+ "@ningboyz/types": "1.7.20",
21
21
  "axios": "1.8.4",
22
22
  "lodash": "^4.17.21"
23
23
  },
@@ -1,4 +1,4 @@
1
- import type { TGztb } from "@ningboyz/types";
1
+ import type { TGztb, TGzzd } from "@ningboyz/types";
2
2
  import type { HttpRequest } from "../axios";
3
3
  import {
4
4
  IGztbMainAppendtmainQuerys,
@@ -92,17 +92,17 @@ class MainRequest {
92
92
 
93
93
  // 获取填报明细
94
94
  get4gzzd(querys: IGztbMainGet4gzzdQuerys, params: object) {
95
- return this.httpRequest.post<TGztb.IGztbMainResponse[]>("/gapi/gztb/tmain/get4gzzd", querys, params);
95
+ return this.httpRequest.post<TGzzd.IGzzdMainResponse[]>("/gapi/gztb/tmain/get4gzzd", querys, params);
96
96
  }
97
97
 
98
98
  // 追加填报表
99
99
  appendtmain(querys: IGztbMainAppendtmainQuerys, params: object) {
100
- return this.httpRequest.post<TGztb.IGztbMainResponse[]>("/gapi/gztb/tmain/appenddb", querys, params);
100
+ return this.httpRequest.post<TGzzd.IGzzdMainResponse[]>("/gapi/gztb/tmain/appenddb", querys, params);
101
101
  }
102
102
 
103
103
  // 删除工资发布
104
104
  del4gzzd(querys: IGztbMainDel4gzzdQuerys, params: object) {
105
- return this.httpRequest.post<TGztb.IGztbMainResponse[]>("/gapi/gztb/tmain/del4gzzd", querys, params);
105
+ return this.httpRequest.post<TGzzd.IGzzdMainResponse[]>("/gapi/gztb/tmain/del4gzzd", querys, params);
106
106
  }
107
107
  }
108
108