@ningboyz/apis 1.7.82 → 1.7.84
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/main.ts +10 -0
- package/packages/gzzd/types.ts +8 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.84",
|
|
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.84",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
package/packages/gzzd/main.ts
CHANGED
|
@@ -11,6 +11,7 @@ import {
|
|
|
11
11
|
IGzzdMainGet5BillWithZwlxQuerys,
|
|
12
12
|
IGzzdMainSelectdbQuerys,
|
|
13
13
|
IGzzdMainUpdatedbQuerys,
|
|
14
|
+
IGzzdMainUpdatedbWithZhjyQuerys,
|
|
14
15
|
IGzzdMainWithgzjgQuerys,
|
|
15
16
|
TGzzdMainDetaild2Querys,
|
|
16
17
|
IGzzdMainSet4userQuerys,
|
|
@@ -187,6 +188,15 @@ class ParaRequest {
|
|
|
187
188
|
return this.httpRequest.post<TGzzd.IGzzdBillResponse[]>("/gapi/gzzd/tmain/get5bill/withzwlx", querys, undefined);
|
|
188
189
|
}
|
|
189
190
|
|
|
191
|
+
/**
|
|
192
|
+
* 保存工资明细
|
|
193
|
+
* @param querys
|
|
194
|
+
* @returns {gzzdmain: {}, listgzlm: {}}
|
|
195
|
+
*/
|
|
196
|
+
updatedbWithZhjy(querys: IGzzdMainUpdatedbWithZhjyQuerys) {
|
|
197
|
+
return this.httpRequest.post<TGzzd.IGzzdMainResponse[]>("/gapi/gzzd/tmain/updatedb/withzhjy", querys, undefined);
|
|
198
|
+
}
|
|
199
|
+
|
|
190
200
|
/**
|
|
191
201
|
* 更新工资标准明细
|
|
192
202
|
* @param querys
|
package/packages/gzzd/types.ts
CHANGED
|
@@ -137,6 +137,14 @@ export class TGzzdMainGet5BillWithZwlxQuerys implements IGzzdMainGet5BillWithZwl
|
|
|
137
137
|
gzzdmain: number = -1;
|
|
138
138
|
}
|
|
139
139
|
|
|
140
|
+
export interface IGzzdMainUpdatedbWithZhjyQuerys {
|
|
141
|
+
reloadit: number;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
export class TGzzdMainUpdatedbWithZhjyQuerys implements IGzzdMainUpdatedbWithZhjyQuerys {
|
|
145
|
+
reloadit: number = -1;
|
|
146
|
+
}
|
|
147
|
+
|
|
140
148
|
export interface IGzzdMainUpdatedbAcnoQuerys {
|
|
141
149
|
usermain: number;
|
|
142
150
|
gzzdstat: number;
|