@ningboyz/apis 1.7.62 → 1.7.64
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/yzht/main.ts +3 -2
- package/packages/yzht/types.ts +10 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.64",
|
|
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.64",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
package/packages/yzht/main.ts
CHANGED
|
@@ -21,7 +21,8 @@ import {
|
|
|
21
21
|
IYzhtMainSelectcxQuerys,
|
|
22
22
|
IYzhtMainSelectd9Querys,
|
|
23
23
|
IYzhtMainSelectdbQuerys,
|
|
24
|
-
IYzhtMainSelectx2Querys
|
|
24
|
+
IYzhtMainSelectx2Querys,
|
|
25
|
+
IYzhtMainWithmemoQuerys
|
|
25
26
|
} from "./types";
|
|
26
27
|
|
|
27
28
|
class YzhtRequest {
|
|
@@ -288,7 +289,7 @@ class YzhtRequest {
|
|
|
288
289
|
* @param params
|
|
289
290
|
* @returns
|
|
290
291
|
*/
|
|
291
|
-
updatedm(querys:
|
|
292
|
+
updatedm(querys: IYzhtMainWithmemoQuerys, params: object) {
|
|
292
293
|
return this.httpRequest.post<TCustom.IValidReponse[]>("/gapi/yzht/tmain/withmemo/updatedb", querys, params);
|
|
293
294
|
}
|
|
294
295
|
|
package/packages/yzht/types.ts
CHANGED
|
@@ -167,9 +167,9 @@ export class TYzhtGlfdSelectfdQuerys implements IYzhtGlfdSelectfdQuerys {
|
|
|
167
167
|
unitmain: number = -1;
|
|
168
168
|
}
|
|
169
169
|
|
|
170
|
-
export interface IYzhtBillUpdated8Querys {
|
|
170
|
+
export interface IYzhtBillUpdated8Querys {}
|
|
171
171
|
|
|
172
|
-
export class TYzhtBillUpdated8Querys implements IYzhtBillUpdated8Querys {
|
|
172
|
+
export class TYzhtBillUpdated8Querys implements IYzhtBillUpdated8Querys {}
|
|
173
173
|
|
|
174
174
|
export interface IYzhtMainSelectd9Querys {
|
|
175
175
|
hzcbmain: number;
|
|
@@ -283,6 +283,14 @@ export class TYzhtMainCancele3Querys implements IYzhtMainCancele3Querys {
|
|
|
283
283
|
billuuid: string = "";
|
|
284
284
|
}
|
|
285
285
|
|
|
286
|
+
export interface IYzhtMainWithmemoQuerys {
|
|
287
|
+
billuuid: string;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
export class TYzhtMainWithmemoQuerys implements IYzhtMainWithmemoQuerys {
|
|
291
|
+
billuuid: string = "";
|
|
292
|
+
}
|
|
293
|
+
|
|
286
294
|
export interface IYzhtMainHasEndedQuerys {
|
|
287
295
|
hasEnded: number;
|
|
288
296
|
}
|