@ningboyz/apis 1.6.80 → 1.6.81
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/dzqr.ts +16 -1
- package/packages/hznj/type.ts +9 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.81",
|
|
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.81",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
package/packages/hznj/dzqr.ts
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
//#任务取消
|
|
2
2
|
import { THznj } from "@ningboyz/types";
|
|
3
3
|
import { HttpRequest } from "../axios";
|
|
4
|
-
import {
|
|
4
|
+
import {
|
|
5
|
+
IHznjDzqrDeletedbQuerys,
|
|
6
|
+
IHznjDzqrDetailQuerys,
|
|
7
|
+
IHznjDzqrFinishedQuerys,
|
|
8
|
+
IHznjDzqrInsertdbQuerys,
|
|
9
|
+
IHznjDzqrSelectdbQuerys,
|
|
10
|
+
IHznjDzqrUpdatedbQuerys,
|
|
11
|
+
THznjDzqrSelectd2Querys
|
|
12
|
+
} from "./type";
|
|
5
13
|
|
|
6
14
|
class RwqxRequest {
|
|
7
15
|
private httpRequest: HttpRequest;
|
|
@@ -13,6 +21,13 @@ class RwqxRequest {
|
|
|
13
21
|
return this.httpRequest.post<THznj.IHznjDzqrResponse[]>("/gapi/hznj/tdzqr/selectdb", querys, undefined);
|
|
14
22
|
}
|
|
15
23
|
|
|
24
|
+
/**
|
|
25
|
+
* 返回已终审的到账单据和关联的收样单ID
|
|
26
|
+
* */
|
|
27
|
+
selectd2(querys: THznjDzqrSelectd2Querys) {
|
|
28
|
+
return this.httpRequest.post<THznj.IHznjDzqrResponse[]>("/gapi/hznj/tdzqr/selectd2", querys, undefined);
|
|
29
|
+
}
|
|
30
|
+
|
|
16
31
|
insertdb(querys: IHznjDzqrInsertdbQuerys, params: object) {
|
|
17
32
|
return this.httpRequest.post<THznj.IHznjDzqrResponse[]>("/gapi/hznj/tdzqr/insertdb", querys, params);
|
|
18
33
|
}
|
package/packages/hznj/type.ts
CHANGED
|
@@ -334,6 +334,15 @@ export class THznjDzqrSelectdbQuerys implements IHznjDzqrSelectdbQuerys {
|
|
|
334
334
|
useronly: number = -1;
|
|
335
335
|
}
|
|
336
336
|
|
|
337
|
+
//#dzqr
|
|
338
|
+
export interface IHznjDzqrSelectd2Querys {
|
|
339
|
+
sourcend: number;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
export class THznjDzqrSelectd2Querys implements IHznjDzqrSelectd2Querys {
|
|
343
|
+
sourcend: number = -1;
|
|
344
|
+
}
|
|
345
|
+
|
|
337
346
|
export interface IHznjDzqrFinishedQuerys {
|
|
338
347
|
sourcend: number;
|
|
339
348
|
useronly: number;
|