@ningboyz/apis 1.6.198 → 1.6.199
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/gzzd/types.ts +2 -2
- package/packages/yzpz/kbkm.ts +11 -1
- package/packages/yzpz/types.ts +13 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.199",
|
|
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.
|
|
20
|
+
"@ningboyz/types": "1.6.199",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
package/packages/gzzd/types.ts
CHANGED
|
@@ -121,9 +121,9 @@ export class TGzzdMainGet4BillWithZwlxQuerys implements IGzzdMainGet4BillWithZwl
|
|
|
121
121
|
}
|
|
122
122
|
|
|
123
123
|
export interface IGzzdMainGet5BillWithZwlxQuerys {
|
|
124
|
-
|
|
124
|
+
gzzdmain: number;
|
|
125
125
|
}
|
|
126
126
|
|
|
127
127
|
export class TGzzdMainGet5BillWithZwlxQuerys implements IGzzdMainGet5BillWithZwlxQuerys {
|
|
128
|
-
|
|
128
|
+
gzzdmain: number = -1;
|
|
129
129
|
}
|
package/packages/yzpz/kbkm.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { TYzpz } from "@ningboyz/types";
|
|
2
2
|
import type { HttpRequest } from "../axios";
|
|
3
|
-
import { IYzpzKbkmSelctdbQuerys, IYzpzKbkmUploaddbQuerys } from "./types";
|
|
3
|
+
import { IYzpzKbkmSelctdbQuerys, IYzpzKbkmUploadd2Querys, IYzpzKbkmUploaddbQuerys } from "./types";
|
|
4
4
|
|
|
5
5
|
class KbkmRequest {
|
|
6
6
|
private httpRequest: HttpRequest;
|
|
@@ -35,6 +35,16 @@ class KbkmRequest {
|
|
|
35
35
|
uploaddb(querys: IYzpzKbkmUploaddbQuerys, params: object) {
|
|
36
36
|
return this.httpRequest.post<TYzpz.IYzpzKbkmResponse[]>("/gapi/yzpz/tkbkm/uploaddb", querys, params);
|
|
37
37
|
}
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* 上传期初余额
|
|
41
|
+
* @param querys
|
|
42
|
+
* @param params
|
|
43
|
+
* @returns
|
|
44
|
+
*/
|
|
45
|
+
uploadd2(querys: IYzpzKbkmUploadd2Querys, params: object) {
|
|
46
|
+
return this.httpRequest.post<TYzpz.IYzpzKbkmResponse[]>("/gapi/yzpz/tkbkm/uploadd2", querys, params);
|
|
47
|
+
}
|
|
38
48
|
}
|
|
39
49
|
|
|
40
50
|
export default KbkmRequest;
|
package/packages/yzpz/types.ts
CHANGED
|
@@ -255,13 +255,25 @@ export class TYzpzKbkmSelctdbQuerys implements IYzpzKbkmSelctdbQuerys {
|
|
|
255
255
|
}
|
|
256
256
|
|
|
257
257
|
export interface IYzpzKbkmUploaddbQuerys {
|
|
258
|
+
sourcend: number;
|
|
259
|
+
sourceid: number;
|
|
260
|
+
sourceqj: number;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
export class TYzpzKbkmUploaddbQuerys implements IYzpzKbkmUploaddbQuerys {
|
|
264
|
+
sourcend: number = -1;
|
|
265
|
+
sourceid: number = -1;
|
|
266
|
+
sourceqj: number = 0;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
export interface IYzpzKbkmUploadd2Querys {
|
|
258
270
|
sourcend: number;
|
|
259
271
|
sourceid: number;
|
|
260
272
|
startval: number;
|
|
261
273
|
endedval: number;
|
|
262
274
|
}
|
|
263
275
|
|
|
264
|
-
export class
|
|
276
|
+
export class TYzpzKbkmUploadd2Querys implements IYzpzKbkmUploadd2Querys {
|
|
265
277
|
sourcend: number = -1;
|
|
266
278
|
sourceid: number = -1;
|
|
267
279
|
startval: number = 0;
|