@ningboyz/apis 1.5.132 → 1.5.135

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.5.132",
3
+ "version": "1.5.135",
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.5.132",
20
+ "@ningboyz/types": "1.5.135",
21
21
  "axios": "1.8.4",
22
22
  "lodash": "^4.17.21"
23
23
  },
@@ -12,6 +12,7 @@ import {
12
12
  ITablMainGet5formulaQuerys,
13
13
  ITablMainInsertdbQuerys,
14
14
  ITablMainSelectcxQuerys,
15
+ ITablMainUpdatedbQuerys,
15
16
  TTablMainSelectdbQuerys
16
17
  } from "./types";
17
18
 
@@ -61,6 +62,11 @@ class MainRequest {
61
62
  return this.httpRequest.post<TTabl.ITablMainResponse[]>("/tabl/tmain/updatedb", undefined, params);
62
63
  }
63
64
 
65
+ // 普通修改-不保留历史记录
66
+ updatedb2(querys: ITablMainUpdatedbQuerys, params: object) {
67
+ return this.httpRequest.post<TTabl.ITablMainResponse[]>("/tabl/tmain/updatedb", querys, params);
68
+ }
69
+
64
70
  /**
65
71
  * 删除动态表单
66
72
  * @param params
@@ -158,3 +158,11 @@ export interface ITablMainGet5formulaQuerys {
158
158
  export class TTablMainGet5formulaQuerys implements ITablMainGet5formulaQuerys {
159
159
  tabltzbl: number = -1;
160
160
  }
161
+
162
+ export interface ITablMainUpdatedbQuerys {
163
+ recreate: number;
164
+ }
165
+
166
+ export class TTablMainUpdatedbQuerys implements ITablMainUpdatedbQuerys {
167
+ recreate: number = -1;
168
+ }