@ningboyz/apis 1.0.37 → 1.0.38

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/index.ts CHANGED
@@ -60,4 +60,4 @@ class Request {
60
60
  }
61
61
 
62
62
  export default Request;
63
- export * from "./packages";
63
+ export * from "./packages";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ningboyz/apis",
3
- "version": "1.0.37",
3
+ "version": "1.0.38",
4
4
  "private": false,
5
5
  "description": "宁波甬政请求库",
6
6
  "author": "nbyt-syq",
@@ -9,6 +9,7 @@
9
9
  "main": "index.ts",
10
10
  "types": "index.ts",
11
11
  "scripts": {
12
+ "prettier": "prettier --config ./.prettierrc --write \"./**/*.{ts,tsx}\" ",
12
13
  "test": "echo \"Error: no test specified\" && exit 1"
13
14
  },
14
15
  "publishConfig": {
@@ -16,7 +17,7 @@
16
17
  "registry": "https://registry.npmjs.org/"
17
18
  },
18
19
  "dependencies": {
19
- "@ningboyz/types": "^1.0.37",
20
+ "@ningboyz/types": "^1.0.38",
20
21
  "axios": "^1.8.4"
21
22
  },
22
23
  "devDependencies": {}
@@ -59,7 +59,7 @@ export interface IGzjgMainSelectdbQuerys {
59
59
  unittype: number;
60
60
  }
61
61
 
62
- export class IGzjgMainSelectdbQuerys implements IGzjgMainSelectdbQuerys {
62
+ export class TGzjgMainSelectdbQuerys implements IGzjgMainSelectdbQuerys {
63
63
  asholder: number = -1;
64
64
  unittype: number = -1;
65
65
  }
@@ -72,7 +72,7 @@ class MainRequest {
72
72
  * @returns
73
73
  */
74
74
  updateit(querys: IWtuiMainRecoverWtuiQuerys, params: object) {
75
- return this.httpRequest.post<TWtui.IWtuiMainResponse[]>(`/wtui/tmain/copywtui`, querys, params);
75
+ return this.httpRequest.post<TWtui.IWtuiMainResponse[]>(`/wtui/tmain/updateit`, querys, params);
76
76
  }
77
77
  }
78
78
 
@@ -228,7 +228,9 @@ export class TWtuiNodeUpdatedbQuerys implements IWtuiNodeUpdatedbQuerys {
228
228
  wtuiroot: number = -1;
229
229
  }
230
230
  export interface IWtuiNodeDatahideQuerys {
231
- /** 是否隐藏 */
231
+ /** 是否隐藏
232
+ 0:正常;1:隐藏
233
+ */
232
234
  datahide: number;
233
235
  }
234
236