@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 +2 -2
- package/packages/noti/type.ts +2 -0
- package/packages/zbzd/main.ts +1 -1
- package/packages/zbzd/type.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.0.
|
|
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.
|
|
20
|
+
"@ningboyz/types": "1.0.161",
|
|
21
21
|
"axios": "1.8.4"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {}
|
package/packages/noti/type.ts
CHANGED
|
@@ -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 {
|
package/packages/zbzd/main.ts
CHANGED
package/packages/zbzd/type.ts
CHANGED
|
@@ -21,10 +21,10 @@ export class TZbzdMainInsertdbQuerys implements IZbzdMainInsertdbQuerys {
|
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
export interface IZbzdMainDetaildbQuerys {
|
|
24
|
-
|
|
24
|
+
zbzdzdid: number;
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
export class TZbzdMainDetaildbQuerys implements IZbzdMainDetaildbQuerys {
|
|
28
|
-
|
|
28
|
+
zbzdzdid: number = -1;
|
|
29
29
|
}
|
|
30
30
|
|