@ningboyz/apis 1.3.132 → 1.3.134

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ningboyz/apis",
3
- "version": "1.3.132",
3
+ "version": "1.3.134",
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.3.132",
20
+ "@ningboyz/types": "1.3.134",
21
21
  "axios": "1.8.4",
22
22
  "lodash": "^4.17.21"
23
23
  },
@@ -166,6 +166,7 @@ export interface IHznjXmjjSelectmxQuerys {
166
166
  userindx: number;
167
167
  withflow: number;
168
168
  useronly: number;
169
+ k7kmkmid: number;
169
170
  }
170
171
 
171
172
  export class THznjXmjjSelectmxQuerys implements IHznjXmjjSelectmxQuerys {
@@ -175,6 +176,7 @@ export class THznjXmjjSelectmxQuerys implements IHznjXmjjSelectmxQuerys {
175
176
  userindx: number = -1;
176
177
  withflow: number = 0;
177
178
  useronly: number = -1;
179
+ k7kmkmid: number = -1;
178
180
  }
179
181
 
180
182
  export interface IHznjXmjjInsertdbQuerys {
@@ -575,6 +577,14 @@ export class THznjZbjgUpdatedbQuerys implements IHznjZbjgUpdatedbQuerys {
575
577
  sourcend: number = -1;
576
578
  }
577
579
 
580
+ export interface IHznjZbjgUpdateztQuerys {
581
+ sourcend: number;
582
+ }
583
+
584
+ export class THznjZbjgUpdateztQuerys implements IHznjZbjgUpdateztQuerys {
585
+ sourcend: number = -1;
586
+ }
587
+
578
588
  export interface IHznjZbjgDetailQuerys {
579
589
  sourcend: number;
580
590
  zbjgindx: number;
@@ -20,6 +20,10 @@ class ZbjgRequest {
20
20
  return this.httpRequest.post<THznj.IHznjZbjgResponse[]>("/gapi/hznj/tzbjg/updatedb", querys, params);
21
21
  }
22
22
 
23
+ updatezt(querys: IHznjZbjgUpdatedbQuerys, params: object) {
24
+ return this.httpRequest.post<THznj.IHznjZbjgResponse[]>("/gapi/hznj/tzbjg/updatezt", querys, params);
25
+ }
26
+
23
27
  detaildb(querys: IHznjZbjgDetailQuerys) {
24
28
  return this.httpRequest.post<THznj.IHznjZbjgResponse[]>("/gapi/hznj/tzbjg/detaildb", querys, undefined);
25
29
  }