@ningboyz/apis 1.4.154 → 1.4.156

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.154",
3
+ "version": "1.4.156",
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.154",
20
+ "@ningboyz/types": "1.4.156",
21
21
  "axios": "1.8.4",
22
22
  "lodash": "^4.17.21"
23
23
  },
@@ -1,7 +1,16 @@
1
1
  //#检测项目管理
2
2
  import { THznj } from "@ningboyz/types";
3
3
  import { HttpRequest } from "../axios";
4
- import { IHznjMainDeletedbQuerys, IHznjMainDetailQuerys, IHznjMainFinishedQuerys, IHznjMainInsertdbQuerys, IHznjMainSelectdbQuerys, IHznjMainUpdateBaseQuerys, IHznjMainUpdatedbQuerys } from "./type";
4
+ import {
5
+ IHznjMainDeletedbQuerys,
6
+ IHznjMainDetailQuerys,
7
+ IHznjMainFinishedQuerys,
8
+ IHznjMainGenerateQuerys,
9
+ IHznjMainInsertdbQuerys,
10
+ IHznjMainSelectdbQuerys,
11
+ IHznjMainUpdateBaseQuerys,
12
+ IHznjMainUpdatedbQuerys
13
+ } from "./type";
5
14
 
6
15
  class MainRequest {
7
16
  private httpRequest: HttpRequest;
@@ -36,6 +45,10 @@ class MainRequest {
36
45
  updatebase(querys: IHznjMainUpdateBaseQuerys, params: object) {
37
46
  return this.httpRequest.post<THznj.IHznjMainResponse[]>("/gapi/hznj/tmain/updatebase", querys, params);
38
47
  }
48
+
49
+ generate(querys: IHznjMainGenerateQuerys, params: object) {
50
+ return this.httpRequest.post<THznj.IHznjMainResponse[]>("/gapi/hznj/tmain/generate", querys, params);
51
+ }
39
52
  }
40
53
 
41
54
  export default MainRequest;
@@ -803,6 +803,14 @@ export class THznjMainUpdateBaseQuerys implements IHznjMainUpdateBaseQuerys {
803
803
  sourcend: number = -1;
804
804
  }
805
805
 
806
+ export interface IHznjMainGenerateQuerys {
807
+ sourcend: number;
808
+ }
809
+
810
+ export class THznjMainGenerateQuerys implements IHznjMainGenerateQuerys {
811
+ sourcend: number = -1;
812
+ }
813
+
806
814
  export interface IHznjMainInsertdbQuerys {
807
815
  sourcend: number;
808
816
  }
@@ -51,18 +51,22 @@ export class TVaryMainCanceledQuerys implements IVaryMainCanceledQuerys {
51
51
 
52
52
  export interface IVaryMainExecuted4MyoaQuerys {
53
53
  entityid: string;
54
+ menuuuid: string;
54
55
  }
55
56
 
56
57
  export class TVaryMainExecuted4MyoaQuerys implements IVaryMainExecuted4MyoaQuerys {
57
58
  entityid: string = "";
59
+ menuuuid: string = "";
58
60
  }
59
61
 
60
62
  export interface IVaryMainCanceled4MyoaQuerys {
61
63
  entityid: string;
64
+ menuuuid: string;
62
65
  }
63
66
 
64
67
  export class TVaryMainCanceled4MyoaQuerys implements IVaryMainCanceled4MyoaQuerys {
65
68
  entityid: string = "";
69
+ menuuuid: string = "";
66
70
  }
67
71
 
68
72
  export interface IVaryMainInsertdbQuerys {
@@ -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
  }