@ningboyz/apis 1.7.73 → 1.7.75

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.73",
3
+ "version": "1.7.75",
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.73",
20
+ "@ningboyz/types": "1.7.75",
21
21
  "axios": "1.8.4",
22
22
  "lodash": "^4.17.21"
23
23
  },
@@ -18,7 +18,8 @@ import {
18
18
  IGzzdMainGet4userQuerys,
19
19
  IGzzdMainUpdatedbAcnoQuerys,
20
20
  IGzzdMainStopUpdateDbAcnoQuerys,
21
- IGzzdMainGet4pzActivityQuerys
21
+ IGzzdMainGet4pzActivityQuerys,
22
+ IGzzdMainGet4gzlmByAcnoQuerys
22
23
  } from "./types";
23
24
 
24
25
  class ParaRequest {
@@ -226,6 +227,11 @@ class ParaRequest {
226
227
  get4pzActivity(querys: IGzzdMainGet4pzActivityQuerys) {
227
228
  return this.httpRequest.post<TGzzd.IGzzdP4PZResponse[]>("/gapi/gzzd/tp4pz/activity", querys, undefined);
228
229
  }
230
+
231
+ /**根据单位获取工资栏目 */
232
+ get4gzlmByAcno(querys: IGzzdMainGet4gzlmByAcnoQuerys, params: object) {
233
+ return this.httpRequest.post<TGzjg.IGzjgGzlmResponse[]>("/gapi/gzzd/tmain/get4gzjg", querys, params);
234
+ }
229
235
  }
230
236
 
231
237
  export default ParaRequest;
@@ -158,3 +158,7 @@ export class TGzzdMainStopUpdateDbAcnoQuerys implements IGzzdMainStopUpdateDbAcn
158
158
  export interface IGzzdMainGet4pzActivityQuerys {}
159
159
 
160
160
  export class TGzzdMainGet4pzActivityQuerys implements IGzzdMainGet4pzActivityQuerys {}
161
+
162
+ export interface IGzzdMainGet4gzlmByAcnoQuerys {}
163
+
164
+ export class TGzzdMainGet4gzlmByAcnoQuerys implements IGzzdMainGet4gzlmByAcnoQuerys {}