@ningboyz/apis 1.7.47 → 1.7.49
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/wlzf/main.ts +9 -3
- package/packages/yzht/fymx.ts +1 -1
- package/packages/yzht/main.ts +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.49",
|
|
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.7.
|
|
20
|
+
"@ningboyz/types": "1.7.49",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
package/packages/wlzf/main.ts
CHANGED
|
@@ -14,7 +14,7 @@ class MainRequest {
|
|
|
14
14
|
* @returns
|
|
15
15
|
*/
|
|
16
16
|
insertdb(querys: IWlzfMainInsertdbQuerys, params: object) {
|
|
17
|
-
return this.httpRequest.post<TWlzf.
|
|
17
|
+
return this.httpRequest.post<TWlzf.IWlzfMainResponse[]>("/wlzf/tmain/insertdb", querys, params);
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
/**
|
|
@@ -23,11 +23,17 @@ class MainRequest {
|
|
|
23
23
|
* @returns
|
|
24
24
|
*/
|
|
25
25
|
deletedb(querys: IWlzfMainDeletedbQuerys, params: object) {
|
|
26
|
-
return this.httpRequest.post<
|
|
26
|
+
return this.httpRequest.post<string[]>("/wlzf/tmain/deletedb", querys, params);
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
+
/**
|
|
30
|
+
* 签发
|
|
31
|
+
* @param querys
|
|
32
|
+
* @param params
|
|
33
|
+
* @returns
|
|
34
|
+
*/
|
|
29
35
|
todoplzf(querys: IWlzfMainInsertdbQuerys, params: object){
|
|
30
|
-
return this.httpRequest.post<TWlzf.
|
|
36
|
+
return this.httpRequest.post<TWlzf.IWlzfMainResponse[]>("/wlzf/tmain/todoplzf", querys, params)
|
|
31
37
|
}
|
|
32
38
|
}
|
|
33
39
|
|
package/packages/yzht/fymx.ts
CHANGED
|
@@ -15,7 +15,7 @@ class FymxRequest {
|
|
|
15
15
|
* @returns
|
|
16
16
|
*/
|
|
17
17
|
insertdb(querys: IEmptyQuerys, params: object) {
|
|
18
|
-
return this.httpRequest.post<TYzht.
|
|
18
|
+
return this.httpRequest.post<TYzht.IYzhtFymxResponse[]>("/gapi/yzht/tfymx/insertdb", querys, params);
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
|
package/packages/yzht/main.ts
CHANGED
|
@@ -313,13 +313,13 @@ class YzhtRequest {
|
|
|
313
313
|
}
|
|
314
314
|
|
|
315
315
|
/**
|
|
316
|
-
*
|
|
316
|
+
* 合同更新总价
|
|
317
317
|
* @param querys
|
|
318
318
|
* @param params
|
|
319
319
|
* @returns
|
|
320
320
|
*/
|
|
321
|
-
|
|
322
|
-
return this.httpRequest.post<TCustom.IValidReponse[]>("/gapi/yzht/tmain/
|
|
321
|
+
kpMoney1Updatedb(querys: IEmptyQuerys, params: object) {
|
|
322
|
+
return this.httpRequest.post<TCustom.IValidReponse[]>("/gapi/yzht/tmain/kpMoney1/updatedb", querys, params);
|
|
323
323
|
}
|
|
324
324
|
|
|
325
325
|
/**
|