@ningboyz/apis 1.4.153 → 1.4.155

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.4.153",
3
+ "version": "1.4.155",
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.4.153",
20
+ "@ningboyz/types": "1.4.155",
21
21
  "axios": "1.8.4",
22
22
  "lodash": "^4.17.21"
23
23
  },
@@ -12,6 +12,7 @@ import {
12
12
  IZbzdMainQueuesbyQuerys,
13
13
  IZbzdMainSelectd4Querys,
14
14
  IZbzdMainSelectdbQuerys,
15
+ IZbzdMainUpdatedb3Querys,
15
16
  IZbzdMainUpdatedbQuerys,
16
17
  IZbzdMainUploaddbQuerys,
17
18
  IZbzdMainUseszbhzUploaddbQuerys,
@@ -190,6 +191,16 @@ class ParaRequest {
190
191
  return this.httpRequest.post<TZbzd.IZbzdMainResponse[]>("/zbzd/tmain/auditdb", querys, params);
191
192
  }
192
193
 
194
+ /**
195
+ * 修改预算指标
196
+ * @param querys
197
+ * @param params
198
+ * @returns
199
+ */
200
+ updatedb3(querys: IZbzdMainUpdatedb3Querys, params: object) {
201
+ return this.httpRequest.post<TZbzd.IZbzdMainResponse[]>("/zbzd/tmain/deptfrom/updatedb", querys, params);
202
+ }
203
+
193
204
  /**
194
205
  * 修改预算指标的流程节点
195
206
  * @param querys
@@ -37,6 +37,14 @@ export class TZbzdMainUpdatedbQuerys implements IZbzdMainUpdatedbQuerys {
37
37
  sourcend: number = -1;
38
38
  }
39
39
 
40
+ export interface IZbzdMainUpdatedb3Querys {
41
+ zbzdmain: number;
42
+ }
43
+
44
+ export class TZbzdMainUpdatedb3Querys implements IZbzdMainUpdatedb3Querys {
45
+ zbzdmain: number = -1;
46
+ }
47
+
40
48
  export interface IZbzdMainDetaildbQuerys {
41
49
  zbzdzdid: number;
42
50
  }