@ningboyz/apis 1.3.124 → 1.3.125
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.
|
|
3
|
+
"version": "1.3.125",
|
|
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.
|
|
20
|
+
"@ningboyz/types": "1.3.125125",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
package/packages/card/types.ts
CHANGED
|
@@ -754,11 +754,13 @@ export interface ICardDataFinishedQuerys {
|
|
|
754
754
|
* */
|
|
755
755
|
menuname: number;
|
|
756
756
|
datatype: number;
|
|
757
|
+
useronly: number;
|
|
757
758
|
}
|
|
758
759
|
|
|
759
760
|
export class TCardDataFinishedQuerys implements ICardDataFinishedQuerys {
|
|
760
761
|
menuname: number = -1;
|
|
761
762
|
datatype: number = -1;
|
|
763
|
+
useronly: number = -1;
|
|
762
764
|
}
|
|
763
765
|
|
|
764
766
|
/**
|
|
@@ -900,11 +902,12 @@ export class TCardRoomDetaildbQuerys implements ICardRoomDetaildbQuerys {
|
|
|
900
902
|
roommain: number = -1;
|
|
901
903
|
}
|
|
902
904
|
|
|
903
|
-
|
|
904
905
|
export interface ICardMainFinishedQuerys {
|
|
905
906
|
datatype: number;
|
|
907
|
+
useronly: number;
|
|
906
908
|
}
|
|
907
909
|
|
|
908
910
|
export class TCardMainFinishedQuerys implements ICardMainFinishedQuerys {
|
|
909
911
|
datatype: number = -1;
|
|
910
|
-
|
|
912
|
+
useronly: number = -1;
|
|
913
|
+
}
|
package/packages/hznk/type.ts
CHANGED
package/packages/vary/types.ts
CHANGED
|
@@ -3,12 +3,14 @@ export interface IVaryMainSelectdbQuerys {
|
|
|
3
3
|
sysclasc: number;
|
|
4
4
|
sourcend: number;
|
|
5
5
|
withflow: number;
|
|
6
|
+
useronly: number;
|
|
6
7
|
}
|
|
7
8
|
|
|
8
9
|
export class TVaryMainSelectdbQuerys implements IVaryMainSelectdbQuerys {
|
|
9
10
|
sysclasc: number = -1;
|
|
10
11
|
sourcend: number = -1;
|
|
11
12
|
withflow: number = -1;
|
|
13
|
+
useronly: number = -1;
|
|
12
14
|
}
|
|
13
15
|
|
|
14
16
|
export interface IVaryMainDetaildbQuerys {
|
|
@@ -22,11 +24,13 @@ export class TVaryMainDetaildbQuerys implements IVaryMainDetaildbQuerys {
|
|
|
22
24
|
export interface IVaryMainFinishedQuerys {
|
|
23
25
|
sourcend: number;
|
|
24
26
|
sysclasc: number;
|
|
27
|
+
useronly: number;
|
|
25
28
|
}
|
|
26
29
|
|
|
27
30
|
export class TVaryMainFinishedQuerys implements IVaryMainFinishedQuerys {
|
|
28
31
|
sourcend: number = -1;
|
|
29
32
|
sysclasc: number = -1;
|
|
33
|
+
useronly: number = -1;
|
|
30
34
|
}
|
|
31
35
|
|
|
32
36
|
export interface IVaryMainInsertdbQuerys {
|