@ningboyz/apis 1.6.43 → 1.6.44

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.6.43",
3
+ "version": "1.6.44",
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.6.43",
20
+ "@ningboyz/types": "1.6.44",
21
21
  "axios": "1.8.4",
22
22
  "lodash": "^4.17.21"
23
23
  },
@@ -8,6 +8,7 @@ import {
8
8
  ITablMainDetaild5Querys,
9
9
  ITablMainDetaildbQuerys,
10
10
  ITablMainFinishcxQuerys,
11
+ ITablMainFinishedQuerys,
11
12
  ITablMainGet4dataQuerys,
12
13
  ITablMainGet5formulaQuerys,
13
14
  ITablMainGet5wzk8Querys,
@@ -197,6 +198,11 @@ class MainRequest {
197
198
  updatedbcommit(querys: ITablMainUpdatedbCommitQuerys, params: object) {
198
199
  return this.httpRequest.post<TTabl.ITablMainResponse[]>("/tabl/tmain/commitby/uploaddb", querys, params);
199
200
  }
201
+
202
+ //已处理
203
+ finished(querys: ITablMainFinishedQuerys, params: object) {
204
+ return this.httpRequest.post<TTabl.ITablMainResponse[]>("/tabl/tmain/finished", querys, params);
205
+ }
200
206
  }
201
207
 
202
208
  export default MainRequest;
@@ -202,3 +202,13 @@ export class TTablMainGet5wzk8Querys implements ITablMainGet5wzk8Querys {
202
202
  export interface ITablMainUpdatedbCommitQuerys {}
203
203
 
204
204
  export class TTablMainUpdatedbCommitQuerys implements ITablMainUpdatedbCommitQuerys {}
205
+
206
+ export interface ITablMainFinishedQuerys {
207
+ sourcend: number;
208
+ sysclasc: number;
209
+ }
210
+
211
+ export class TTablMainFinishedQuerys implements ITablMainFinishedQuerys {
212
+ sourcend: number = -1;
213
+ sysclasc: number = -1;
214
+ }