@ningboyz/apis 1.1.104 → 1.1.106
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/yzpz/kbkm.ts +9 -0
- package/packages/yzpz/types.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.106",
|
|
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.1.
|
|
20
|
+
"@ningboyz/types": "1.1.106",
|
|
21
21
|
"axios": "1.8.4"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {}
|
package/packages/yzpz/kbkm.ts
CHANGED
|
@@ -17,6 +17,15 @@ class KbkmRequest {
|
|
|
17
17
|
return this.httpRequest.post<TYzpz.IYzpzK8kmResponse[]>("/gapi/yzpz/tkbkm/selectdb", querys, undefined);
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
+
/**
|
|
21
|
+
* 获取期初余额列表-多期间
|
|
22
|
+
* @param querys
|
|
23
|
+
* @returns
|
|
24
|
+
*/
|
|
25
|
+
selectd2(querys: IYzpzKbkmSelctdbQuerys) {
|
|
26
|
+
return this.httpRequest.post<TYzpz.IYzpzK8kmResponse[]>("/gapi/yzpz/tkbkm/selectd2", querys, undefined);
|
|
27
|
+
}
|
|
28
|
+
|
|
20
29
|
/**
|
|
21
30
|
* 上传期初余额
|
|
22
31
|
* @param querys
|
package/packages/yzpz/types.ts
CHANGED
|
@@ -221,11 +221,13 @@ export class TYzpzK8kmDeletedbQuerys implements IYzpzK8kmDeletedbQuerys {
|
|
|
221
221
|
export interface IYzpzKbkmSelctdbQuerys {
|
|
222
222
|
sourcend: number;
|
|
223
223
|
sourceid: number;
|
|
224
|
+
k0kmkmmc: string;
|
|
224
225
|
}
|
|
225
226
|
|
|
226
227
|
export class TYzpzKbkmSelctdbQuerys implements IYzpzKbkmSelctdbQuerys {
|
|
227
228
|
sourcend: number = -1;
|
|
228
229
|
sourceid: number = -1;
|
|
230
|
+
k0kmkmmc: string = "";
|
|
229
231
|
}
|
|
230
232
|
|
|
231
233
|
export interface IYzpzKbkmUploaddbQuerys {
|