@ningboyz/apis 1.3.25 → 1.3.26

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.3.25",
3
+ "version": "1.3.26",
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.3.25",
20
+ "@ningboyz/types": "1.3.26",
21
21
  "axios": "1.8.4",
22
22
  "lodash": "^4.17.21"
23
23
  },
@@ -13,7 +13,7 @@ export class THzcbMainSelectdbQuerys implements IHzcbMainSelectdbQuerys {
13
13
  sourcend: number = -1;
14
14
  useronly: number = -1;
15
15
  viewonly: number = -1;
16
- datatype: number;
16
+ datatype: number = -1;
17
17
  }
18
18
  export interface IHzcbMainDetaildbQuerys {
19
19
  hzcbmain: number;
@@ -23,8 +23,10 @@ export class THzcbMainDetaildbQuerys implements IHzcbMainDetaildbQuerys {
23
23
  }
24
24
  export interface IHzcbMainFinisheddbQuerys {
25
25
  sourcend: number;
26
+ datatype: number;
26
27
  }
27
28
  export class THzcbMainFinisheddbQuerys implements IHzcbMainFinisheddbQuerys {
29
+ datatype: number = -1;
28
30
  sourcend: number = -1;
29
31
  }
30
32