@ningboyz/apis 1.1.140 → 1.1.142
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/card/main.ts +11 -0
- package/packages/gztb/main.ts +1 -1
- package/packages/gzzd/main.ts +9 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.142",
|
|
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.142",
|
|
21
21
|
"axios": "1.8.4"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {}
|
package/packages/card/main.ts
CHANGED
|
@@ -251,6 +251,17 @@ class MainRequest {
|
|
|
251
251
|
selectd4(querys: ICardMainSelectd4Querys, params: object) {
|
|
252
252
|
return this.httpRequest.post<TCard.ICardMainResponse[]>("/gapi/card/tmain/selectd4", querys, params);
|
|
253
253
|
}
|
|
254
|
+
|
|
255
|
+
/**
|
|
256
|
+
* 查重用的
|
|
257
|
+
* 只有单位、资产编码、资产条码
|
|
258
|
+
* @param querys
|
|
259
|
+
* @param params
|
|
260
|
+
* @returns
|
|
261
|
+
*/
|
|
262
|
+
selectd5(querys: ICardMainSelectd2Querys, params: object) {
|
|
263
|
+
return this.httpRequest.post<TCard.ICardMainResponse[]>("/gapi/card/tmain/selectd5", querys, params);
|
|
264
|
+
}
|
|
254
265
|
/**
|
|
255
266
|
* 修复资产编码
|
|
256
267
|
* @param querys
|
package/packages/gztb/main.ts
CHANGED
|
@@ -60,7 +60,7 @@ class MainRequest {
|
|
|
60
60
|
* @returns
|
|
61
61
|
*/
|
|
62
62
|
appenddb(params: TGztb.IGztbMainResponse) {
|
|
63
|
-
return this.httpRequest.post<TGztb.IGztbMainResponse[]>("/gztb/tmain/readunit/appenddb", undefined, params);
|
|
63
|
+
return this.httpRequest.post<TGztb.IGztbMainResponse[]>("/gapi/gztb/tmain/readunit/appenddb", undefined, params);
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
66
|
|
package/packages/gzzd/main.ts
CHANGED
|
@@ -118,6 +118,15 @@ class ParaRequest {
|
|
|
118
118
|
get5billWithZwlx(querys: IGzzdMainGet5BillWithZwlxQuerys) {
|
|
119
119
|
return this.httpRequest.post<TGzzd.IGzzdMainResponse[]>("/gapi/gzzd/tmain/get5bill/withzwlx", querys, undefined);
|
|
120
120
|
}
|
|
121
|
+
|
|
122
|
+
/**
|
|
123
|
+
* 更新工资标准明细
|
|
124
|
+
* @param querys
|
|
125
|
+
* @returns
|
|
126
|
+
*/
|
|
127
|
+
updatedbWithzwlx(querys: IGzzdMainUpdatedbQuerys, params: object) {
|
|
128
|
+
return this.httpRequest.post<TGzzd.IGzzdMainResponse[]>("/gapi/gzzd/tmain/updatedb/withzwlx", querys, params);
|
|
129
|
+
}
|
|
121
130
|
}
|
|
122
131
|
|
|
123
132
|
export default ParaRequest;
|