@ningboyz/apis 1.2.162 → 1.2.164
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/hznj/xmys.ts +0 -0
- package/packages/hznk/fydw.ts +4 -1
- package/packages/hznk/type.ts +14 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.164",
|
|
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.
|
|
20
|
+
"@ningboyz/types": "1.2.164",
|
|
21
21
|
"axios": "1.8.4"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {}
|
|
File without changes
|
package/packages/hznk/fydw.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { THznk } from "@ningboyz/types";
|
|
2
2
|
import { HttpRequest } from "../axios";
|
|
3
|
-
import { IHznkFydwDeletedbQuerys, IHznkFydwDetailQuerys, IHznkFydwFinishedQuerys, IHznkFydwInsertdbQuerys, IHznkFydwSelectdbQuerys, IHznkFydwUpdatedbQuerys } from "./type";
|
|
3
|
+
import { IHznkFydwDeletedbQuerys, IHznkFydwDetailQuerys, IHznkFydwFinishedQuerys, IHznkFydwInsertdbQuerys, IHznkFydwSelectdbQuerys, IHznkFydwSelectglQuerys, IHznkFydwUpdatedbQuerys } from "./type";
|
|
4
4
|
|
|
5
5
|
class FydwRequest {
|
|
6
6
|
private httpRequest: HttpRequest;
|
|
@@ -31,6 +31,9 @@ class FydwRequest {
|
|
|
31
31
|
finished(querys: IHznkFydwFinishedQuerys) {
|
|
32
32
|
return this.httpRequest.post<THznk.IHznkFydwResponse[]>("/gapi/hznk/tfydw/finished", querys, undefined);
|
|
33
33
|
}
|
|
34
|
+
selectgl(querys: IHznkFydwSelectglQuerys) {
|
|
35
|
+
return this.httpRequest.post<THznk.IHznkFydwResponse[]>("/gapi/hznk/tfydw/selectgl", querys, undefined);
|
|
36
|
+
}
|
|
34
37
|
}
|
|
35
38
|
|
|
36
39
|
export default FydwRequest;
|
package/packages/hznk/type.ts
CHANGED
|
@@ -187,6 +187,16 @@ export class THznkFydwFinishedQuerys implements IHznkFydwFinishedQuerys {
|
|
|
187
187
|
sourcend: number = -1;
|
|
188
188
|
}
|
|
189
189
|
|
|
190
|
+
export interface IHznkFydwSelectglQuerys {
|
|
191
|
+
sourcend: number;
|
|
192
|
+
withflow: number;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
export class THznkFydwSelectglQuerys implements IHznkFydwSelectglQuerys {
|
|
196
|
+
sourcend: number = -1;
|
|
197
|
+
withflow: number = -1;
|
|
198
|
+
}
|
|
199
|
+
|
|
190
200
|
export interface IHznkFydwInsertdbQuerys {
|
|
191
201
|
sourcend: number;
|
|
192
202
|
}
|
|
@@ -398,19 +408,23 @@ export class THznkXmysDeletedbQuerys implements IHznkXmysDeletedbQuerys {
|
|
|
398
408
|
export interface IHznkFytqSelectdbQuerys {
|
|
399
409
|
sourcend: number;
|
|
400
410
|
withflow: number;
|
|
411
|
+
datatype: number;
|
|
401
412
|
}
|
|
402
413
|
|
|
403
414
|
export class THznkFytqSelectdbQuerys implements IHznkFytqSelectdbQuerys {
|
|
404
415
|
sourcend: number = -1;
|
|
405
416
|
withflow: number = -1;
|
|
417
|
+
datatype: number = -1;
|
|
406
418
|
}
|
|
407
419
|
|
|
408
420
|
export interface IHznkFytqFinishedQuerys {
|
|
409
421
|
sourcend: number;
|
|
422
|
+
datatype: number;
|
|
410
423
|
}
|
|
411
424
|
|
|
412
425
|
export class THznkFytqFinishedQuerys implements IHznkFytqFinishedQuerys {
|
|
413
426
|
sourcend: number = -1;
|
|
427
|
+
datatype: number = -1;
|
|
414
428
|
}
|
|
415
429
|
|
|
416
430
|
export interface IHznkFytqInsertdbQuerys {
|