@ningboyz/apis 1.0.50 → 1.0.52
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/gzjg/gzlm.ts +9 -2
- package/packages/gzjg/type.ts +11 -0
- package/packages/wtui/type.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.52",
|
|
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.0.
|
|
20
|
+
"@ningboyz/types": "1.0.51",
|
|
21
21
|
"axios": "1.8.4"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {}
|
package/packages/gzjg/gzlm.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { TGzjg } from "@ningboyz/types";
|
|
2
2
|
import type { HttpRequest } from "../axios";
|
|
3
|
-
import { IGzjgGzlmDetaildbQuerys, IGzjgGzlmGet4GzlmQuerys, IGzjgGzlmInsertdbQuerys, IGzjgGzlmSelectdbQuerys, IGzjgGzlmUpdatedbQuerys } from "./type";
|
|
3
|
+
import { IGzjgGzlmDetaildbQuerys, IGzjgGzlmGet4GzlmQuerys, IGzjgGzlmInsertdbQuerys, IGzjgGzlmSelectdbQuerys, IGzjgGzlmUpdatedbQuerys, IGzjgGzlmSelectQuerys } from "./type";
|
|
4
4
|
|
|
5
5
|
class GzlmRequest {
|
|
6
6
|
private httpRequest: HttpRequest;
|
|
@@ -56,6 +56,13 @@ class GzlmRequest {
|
|
|
56
56
|
queuesby(params: object) {
|
|
57
57
|
return this.httpRequest.post<TGzjg.IGzjgGzlmResponse[]>(`/gzjg/tgzlm/queuesby`, undefined, params);
|
|
58
58
|
}
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* 获取列向栏目(指标要素)
|
|
62
|
+
*/
|
|
63
|
+
select2(querys: IGzjgGzlmSelectQuerys) {
|
|
64
|
+
return this.httpRequest.post<TGzjg.IElemElemResponse[]>(`/gzjg/tgzlm/withelem/selectd2`, querys, undefined);
|
|
65
|
+
}
|
|
59
66
|
}
|
|
60
67
|
|
|
61
68
|
export default GzlmRequest;
|
package/packages/gzjg/type.ts
CHANGED
|
@@ -10,6 +10,17 @@ export class TGzjgGzlmSelectdbQuerys implements IGzjgGzlmSelectdbQuerys {
|
|
|
10
10
|
gzlmflgq: number = -1;
|
|
11
11
|
tablname: string = "";
|
|
12
12
|
}
|
|
13
|
+
export interface IGzjgGzlmSelectQuerys {
|
|
14
|
+
sourcend: number;
|
|
15
|
+
gzjgmain: number;
|
|
16
|
+
tabname: string;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export class TGzjgGzlmSelectQuerys implements IGzjgGzlmSelectQuerys {
|
|
20
|
+
sourcend: number = -1;
|
|
21
|
+
gzjgmain: number = -1;
|
|
22
|
+
tabname: string = "";
|
|
23
|
+
}
|
|
13
24
|
|
|
14
25
|
export interface IGzjgGzlmInsertdbQuerys {
|
|
15
26
|
gzlmmain: number;
|
package/packages/wtui/type.ts
CHANGED
|
@@ -206,12 +206,14 @@ export interface IWtuiNodeAsmainlyQuerys {
|
|
|
206
206
|
useruuid: string;
|
|
207
207
|
asmobile: number;
|
|
208
208
|
asclient: number;
|
|
209
|
+
sysclasc: number;
|
|
209
210
|
}
|
|
210
211
|
|
|
211
212
|
export class TWtuiNodeAsmainlyQuerys implements IWtuiNodeAsmainlyQuerys {
|
|
212
213
|
useruuid: string = "";
|
|
213
214
|
asmobile: number = -1;
|
|
214
215
|
asclient: number = -1;
|
|
216
|
+
sysclasc: number = -1;
|
|
215
217
|
}
|
|
216
218
|
export interface IWtuiNodeSelectdbQuerys {
|
|
217
219
|
wtuimain: number;
|