@ningboyz/apis 1.2.122 → 1.2.124

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.2.122",
3
+ "version": "1.2.124",
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.2.122",
20
+ "@ningboyz/types": "1.2.124",
21
21
  "axios": "1.8.4"
22
22
  },
23
23
  "devDependencies": {}
@@ -12,10 +12,11 @@ class RoomRequest {
12
12
  /**
13
13
  * 获取地址信息列表
14
14
  * @param querys
15
+ * @param params
15
16
  * @returns
16
17
  */
17
- selectdb(querys: ICardRoomSelectdbQuerys) {
18
- return this.httpRequest.post<TCard.ICardRoomResponse[]>("/gapi/card/troom/selectdb", querys, undefined);
18
+ selectdb(querys: ICardRoomSelectdbQuerys, params: object) {
19
+ return this.httpRequest.post<TCard.ICardRoomResponse[]>("/gapi/card/troom/selectdb", querys, params);
19
20
  }
20
21
 
21
22
  /**
@@ -823,11 +823,13 @@ export class TCardMainRepair2dbQuerys implements ICardMainRepair2dbQuerys {
823
823
  export interface ICardHyhbSelectdbQuerys {
824
824
  viewonly: number;
825
825
  useronly: number;
826
+ unitmain: number;
826
827
  }
827
828
 
828
829
  export class TCardHyhbSelectdbQuerys implements ICardHyhbSelectdbQuerys {
829
830
  viewonly: number = -1;
830
831
  useronly: number = -1;
832
+ unitmain: number = -1;
831
833
  }
832
834
 
833
835
  export interface ICardHyhbDetaildbQuerys {
@@ -865,11 +867,13 @@ export class TCardFwczDetaildbQuerys implements ICardFwczDetaildbQuerys {
865
867
  export interface ICardRoomSelectdbQuerys {
866
868
  viewonly: number;
867
869
  useronly: number;
870
+ unitmain: number;
868
871
  }
869
872
 
870
873
  export class TCardRoomSelectdbQuerys implements ICardRoomSelectdbQuerys {
871
874
  viewonly: number = -1;
872
875
  useronly: number = -1;
876
+ unitmain: number = -1;
873
877
  }
874
878
 
875
879
  export interface ICardRoomDetaildbQuerys {