@ningboyz/apis 1.1.9 → 1.1.10
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/card/type.ts +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.10",
|
|
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.1.
|
|
20
|
+
"@ningboyz/types": "1.1.10",
|
|
21
21
|
"axios": "1.8.4"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {}
|
package/packages/card/type.ts
CHANGED
|
@@ -733,7 +733,7 @@ export interface ICardMainRepairdbQuerys {
|
|
|
733
733
|
/**
|
|
734
734
|
* 菜单id
|
|
735
735
|
* */
|
|
736
|
-
menuuuid:
|
|
736
|
+
menuuuid: string;
|
|
737
737
|
/**
|
|
738
738
|
* 年度
|
|
739
739
|
* */
|
|
@@ -742,7 +742,7 @@ export interface ICardMainRepairdbQuerys {
|
|
|
742
742
|
|
|
743
743
|
export class TCardMainRepairdbQuerys implements ICardMainRepairdbQuerys {
|
|
744
744
|
unitmain: number = -1;
|
|
745
|
-
menuuuid:
|
|
745
|
+
menuuuid: string = "";
|
|
746
746
|
sourcend: number = -1;
|
|
747
747
|
}
|
|
748
748
|
|
|
@@ -758,11 +758,11 @@ export interface ICardMainRepair2dbQuerys {
|
|
|
758
758
|
/**
|
|
759
759
|
* 菜单id
|
|
760
760
|
* */
|
|
761
|
-
menuuuid:
|
|
761
|
+
menuuuid: string;
|
|
762
762
|
}
|
|
763
763
|
|
|
764
764
|
export class TCardMainRepair2dbQuerys implements ICardMainRepair2dbQuerys {
|
|
765
765
|
unitmain: number = -1;
|
|
766
|
-
menuuuid:
|
|
766
|
+
menuuuid: string = "";
|
|
767
767
|
}
|
|
768
768
|
|