@ningboyz/apis 1.1.7 → 1.1.9

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.1.7",
3
+ "version": "1.1.9",
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.7",
20
+ "@ningboyz/types": "1.1.9",
21
21
  "axios": "1.8.4"
22
22
  },
23
23
  "devDependencies": {}
@@ -723,17 +723,27 @@ export class TCardTdataDetaildbQuerys implements ICardTdataDetaildbQuerys {
723
723
  }
724
724
 
725
725
  /**
726
- * 修复资产条码
726
+ * 修复资产编码
727
727
  * */
728
728
  export interface ICardMainRepairdbQuerys {
729
729
  /**
730
730
  * 单位
731
731
  * */
732
732
  unitmain: number;
733
+ /**
734
+ * 菜单id
735
+ * */
736
+ menuuuid: number;
737
+ /**
738
+ * 年度
739
+ * */
740
+ sourcend: number;
733
741
  }
734
742
 
735
743
  export class TCardMainRepairdbQuerys implements ICardMainRepairdbQuerys {
736
744
  unitmain: number = -1;
745
+ menuuuid: number = -1;
746
+ sourcend: number = -1;
737
747
  }
738
748
 
739
749
 
@@ -745,9 +755,14 @@ export interface ICardMainRepair2dbQuerys {
745
755
  * 单位
746
756
  * */
747
757
  unitmain: number;
758
+ /**
759
+ * 菜单id
760
+ * */
761
+ menuuuid: number;
748
762
  }
749
763
 
750
764
  export class TCardMainRepair2dbQuerys implements ICardMainRepair2dbQuerys {
751
765
  unitmain: number = -1;
766
+ menuuuid: number = -1;
752
767
  }
753
768