@ningboyz/apis 1.7.136 → 1.7.137

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.7.136",
3
+ "version": "1.7.137",
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.136",
20
+ "@ningboyz/types": "1.7.137",
21
21
  "axios": "1.8.4",
22
22
  "lodash": "^4.17.21"
23
23
  },
@@ -14,6 +14,7 @@ import {
14
14
  IGztbMainPublishQuerys,
15
15
  IGztbMainSelectdbQuerys,
16
16
  IGztbMainUpdateQuerys,
17
+ IGztbMainUsersizeSelectdbQuerys,
17
18
  IGztbMainUsesNextQuerys
18
19
  } from "./types";
19
20
 
@@ -175,6 +176,11 @@ class MainRequest {
175
176
  updatedb(querys: IGztbMainUpdateQuerys, params: object) {
176
177
  return this.httpRequest.post<TGztb.IGztbMainResponse[]>("/gapi/gztb/tmain/updatedb", querys, params);
177
178
  }
179
+
180
+ /**获取人数统计*/
181
+ usersizeSelectdb(querys: IGztbMainUsersizeSelectdbQuerys, params: object) {
182
+ return this.httpRequest.post<TGztb.IGztbMainResponse[]>("/gapi/gztb/tmain/usersize/selectdb", querys, params);
183
+ }
178
184
  }
179
185
 
180
186
  export default MainRequest;
@@ -127,3 +127,7 @@ export class TGztbMainMakezeroQuerys implements IGztbMainMakezeroQuerys {
127
127
  export interface IGztbMainUpdateQuerys {}
128
128
 
129
129
  export class TGztbMainUpdateQuerys implements IGztbMainUpdateQuerys {}
130
+
131
+ export interface IGztbMainUsersizeSelectdbQuerys {}
132
+
133
+ export class TGztbMainUsersizeSelectdbQuerys implements IGztbMainUsersizeSelectdbQuerys {}