@ningboyz/apis 1.1.64 → 1.1.65

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.1.64",
3
+ "version": "1.1.65",
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.1.64",
20
+ "@ningboyz/types": "1.1.65",
21
21
  "axios": "1.8.4"
22
22
  },
23
23
  "devDependencies": {}
@@ -25,8 +25,8 @@ class ParaRequest {
25
25
  /**
26
26
  * 获取单位用户权限范围内可填写的工资分录
27
27
  */
28
- get4bill(querys: IGzzdMainGet4billQuerys) {
29
- return this.httpRequest.post<TGzzd.IGzzdBillResponse[]>("/gapi/gzzd/tmain/get4bill", querys, undefined);
28
+ get4bill(querys: IGzzdMainGet4billQuerys, params: object) {
29
+ return this.httpRequest.post<TGzzd.IGzzdBillResponse[]>("/gapi/gzzd/tmain/get4bill", querys, params);
30
30
  }
31
31
 
32
32
  /**
@@ -4,8 +4,6 @@ export interface IGzzdMainSelectdbQuerys {
4
4
  taskmain: number;
5
5
  gztbmain: number;
6
6
  withflow: number;
7
- queuesby: number;
8
- withhold: number;
9
7
  }
10
8
 
11
9
  export class TGzzdMainSelectdbQuerys implements IGzzdMainSelectdbQuerys {
@@ -13,8 +11,6 @@ export class TGzzdMainSelectdbQuerys implements IGzzdMainSelectdbQuerys {
13
11
  taskmain: number = -1;
14
12
  gztbmain: number = -1;
15
13
  withflow: number = -1;
16
- queuesby: number = -1;
17
- withhold: number = -1;
18
14
  }
19
15
 
20
16
  export interface IGzzdMainGet4gzzdQuerys {