@ningboyz/apis 1.7.137 → 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 +2 -2
- package/packages/tabl/main.ts +6 -0
- package/packages/tabl/types.ts +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.7.
|
|
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.
|
|
20
|
+
"@ningboyz/types": "1.7.138",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
package/packages/tabl/main.ts
CHANGED
|
@@ -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;
|
package/packages/tabl/types.ts
CHANGED
|
@@ -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 {}
|