@ningboyz/apis 1.0.159 → 1.0.161

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.0.159",
3
+ "version": "1.0.161",
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.0.159",
20
+ "@ningboyz/types": "1.0.161",
21
21
  "axios": "1.8.4"
22
22
  },
23
23
  "devDependencies": {}
@@ -5,6 +5,7 @@ export interface INotiMainSelectdbQuerys {
5
5
  viewonly: number;
6
6
  unitonly: number;
7
7
  unitmain: number;
8
+ withflow: number;
8
9
  }
9
10
 
10
11
  export class TNotiMainSelectdbQuerys implements INotiMainSelectdbQuerys {
@@ -13,6 +14,7 @@ export class TNotiMainSelectdbQuerys implements INotiMainSelectdbQuerys {
13
14
  viewonly: number = -1;
14
15
  unitonly: number = -1;
15
16
  unitmain: number = -1;
17
+ withflow: number = 0;
16
18
  }
17
19
 
18
20
  export interface INotiMainDetaildbQuerys {
@@ -39,7 +39,7 @@ class ParaRequest {
39
39
  }
40
40
 
41
41
  /**
42
- * 获取预算指标
42
+ * 获取预算指标详情
43
43
  */
44
44
  detaildb(querys: IZbzdMainDetaildbQuerys, params: object) {
45
45
  return this.httpRequest.post<TZbzd.IZbzdMainResponse[]>("/zbzd/tmain/detaildb", querys, params);
@@ -21,10 +21,10 @@ export class TZbzdMainInsertdbQuerys implements IZbzdMainInsertdbQuerys {
21
21
 
22
22
 
23
23
  export interface IZbzdMainDetaildbQuerys {
24
- zbzdZdid: number;
24
+ zbzdzdid: number;
25
25
  }
26
26
 
27
27
  export class TZbzdMainDetaildbQuerys implements IZbzdMainDetaildbQuerys {
28
- zbzdZdid: number = -1;
28
+ zbzdzdid: number = -1;
29
29
  }
30
30