@ningboyz/apis 1.4.74 → 1.4.75

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.4.74",
3
+ "version": "1.4.75",
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.4.74",
20
+ "@ningboyz/types": "1.4.75",
21
21
  "axios": "1.8.4",
22
22
  "lodash": "^4.17.21"
23
23
  },
@@ -81,8 +81,8 @@ class NodeRequest {
81
81
  * @param querys
82
82
  * @returns
83
83
  */
84
- selectdb2(querys: IFlowNodeSelectdb2Querys) {
85
- return this.httpRequest.post<TFlow.IFlowNodeResponse[]>("/flow/tnode/selectdb2", querys, undefined);
84
+ selectd2(querys: IFlowNodeSelectdb2Querys) {
85
+ return this.httpRequest.post<TFlow.IFlowNodeResponse[]>("/flow/tnode/selectd2", querys, undefined);
86
86
  }
87
87
  }
88
88
 
@@ -227,11 +227,11 @@ export class TFlowUserNotiUpdatedbQuerys implements IFLowUserNotiUpdatedbQuerys
227
227
 
228
228
 
229
229
  export interface IFlowNodeSelectdb2Querys {
230
+ usermain: number;
230
231
  flowmain: number;
231
- flownode: number;
232
232
  }
233
233
 
234
234
  export class TFlowNodeSelectdb2Querys implements IFlowNodeSelectdb2Querys {
235
+ usermain: number = -1;
235
236
  flowmain: number = -1;
236
- flownode: number = -1;
237
237
  }