@ningboyz/apis 1.7.89 → 1.7.91
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/yzht/types.ts +8 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.91",
|
|
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.7.
|
|
20
|
+
"@ningboyz/types": "1.7.91",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
package/packages/yzht/types.ts
CHANGED
|
@@ -183,18 +183,26 @@ export class TYzhtMainSelectd9Querys implements IYzhtMainSelectd9Querys {
|
|
|
183
183
|
|
|
184
184
|
export interface IYzhtMainSelectcxQuerys {
|
|
185
185
|
menuuuid: string;
|
|
186
|
+
cardindx: number;
|
|
187
|
+
cardexid: number;
|
|
186
188
|
}
|
|
187
189
|
|
|
188
190
|
export class TYzhtMainSelectcxQuerys implements IYzhtMainSelectcxQuerys {
|
|
189
191
|
menuuuid: string = "";
|
|
192
|
+
cardindx: number = -1;
|
|
193
|
+
cardexid: number = -1;
|
|
190
194
|
}
|
|
191
195
|
|
|
192
196
|
export interface IYzhtMainSelectc2Querys {
|
|
193
197
|
menuuuid: string;
|
|
198
|
+
cardindx: number;
|
|
199
|
+
cardexid: number;
|
|
194
200
|
}
|
|
195
201
|
|
|
196
202
|
export class TYzhtMainSelectc2Querys implements IYzhtMainSelectcxQuerys {
|
|
197
203
|
menuuuid: string = "";
|
|
204
|
+
cardindx: number = -1;
|
|
205
|
+
cardexid: number = -1;
|
|
198
206
|
}
|
|
199
207
|
|
|
200
208
|
export interface IYzhtMainExecutedQuerys {
|