@ningboyz/apis 1.7.136 → 1.7.138

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.138",
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.138",
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 {}
@@ -17,6 +17,7 @@ import {
17
17
  ITablMainInsertdbQuerys,
18
18
  ITablMainRestorestatusQuerys,
19
19
  ITablMainSelectcxQuerys,
20
+ ITablMainTablstatUpdatedb2Querys,
20
21
  ITablMainTablstatUpdatedbQuerys,
21
22
  ITablMainUpdatedbCommitQuerys,
22
23
  ITablMainUpdatedbQuerys,
@@ -246,6 +247,11 @@ class MainRequest {
246
247
  restorestatus(querys: ITablMainRestorestatusQuerys, params: object) {
247
248
  return this.httpRequest.post<TTabl.ITablMainResponse[]>("/tabl/tmain/tablstat/return", querys, params);
248
249
  }
250
+
251
+ /**批量修改状态 */
252
+ tablstatUploaddb(querys: ITablMainTablstatUpdatedb2Querys, params: object) {
253
+ return this.httpRequest.post<TTabl.ITablMainResponse[]>("/tabl/tmain/tablstat/uploaddb", querys, params);
254
+ }
249
255
  }
250
256
 
251
257
  export default MainRequest;
@@ -232,3 +232,7 @@ export class TTablMainBackupstatusQuerys implements ITablMainBackupstatusQuerys
232
232
  export interface ITablMainRestorestatusQuerys {}
233
233
 
234
234
  export class TTablMainRestorestatusQuerys implements ITablMainRestorestatusQuerys {}
235
+
236
+ export interface ITablMainTablstatUpdatedb2Querys {}
237
+
238
+ export class TTablMainTablstatUpdatedb2Querys implements ITablMainTablstatUpdatedb2Querys {}